Skip to content

Commit d297ffd

Browse files
committed
Update README.md with bootstrap documentation links
1 parent 7db1658 commit d297ffd

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,29 @@
33

44
## Project 1: Build a responsive cookie store web page
55

6+
0. Link the `css/styles.css` file in the index.html `<head>` section.
7+
- _We will use this to add our own custom styles._
68
1. Add Bootstrap
7-
- Use the CDN link tag
8-
2. Apply the bootstrap grid classes
9+
- Use the [CDN link tag](https://getbootstrap.com/docs/4.1/getting-started/introduction/#quick-start)
10+
2. Apply the [bootstrap grid classes](https://getbootstrap.com/docs/4.1/layout/grid/)
911
- The 4 cookie products should appear side by side in one row on large screens
1012
- The 4 cookies should appear one per row on smaller screens
1113
- ![grid](screenshots/cookie-store-grid.png)
12-
3. Apply styling to make the page look as follows:
14+
3. Apply styling to make the page responsive as follows:
1315
- On larger screens:
1416
- ![larger screens](screenshots/cookie-store-large-screen.png)
1517
- On smaller screens:
1618
- ![smaller screens](screenshots/cookie-store-mobile-screen.png)
1719
4. Using only bootstrap styles, and not moving any html tags, make the cookie products alternate as follows on larger screens:
1820
- ![larger screens](screenshots/cookie-store-large-screen-alt.png)
19-
- _Hint:_ Look into the push and pull classes
21+
- _Hint:_ You can wrap your existing HTML in extra `<div>` tags
22+
- _Hint:_ Look into the [reordering classes](https://getbootstrap.com/docs/4.1/layout/grid/#reordering)
2023
- *Clarifications*
21-
+ _Don't_ change the order of the 3 main cookie html tags, the `h3`, followed by the `p`, and then the `img` tags. _Remember, we want to keep semantic order._
22-
+ You can add `div`'s and bootstrap classes as needed, you can wrap any tags in divs as needed, as long as you don't change the order.
24+
+ _Don't_ change the order of the 3 main cookie html tags, the `<h3>`, followed by the `<p>`, and then the `<img>` tags. _Remember, we want to keep semantic order._
25+
+ You can add `<div>`'s and bootstrap classes as needed, you can wrap any tags in divs as needed, as long as you don't change the order.
26+
5. **Stretch** Add a custom google font to our page:
27+
- Select and link a font from: https://fonts.google.com/
28+
- Add the font style to select tags
2329

2430
## Project 2: Build a personal (professional) web page for yourself
2531

0 commit comments

Comments
 (0)