|
3 | 3 |
|
4 | 4 | ## Project 1: Build a responsive cookie store web page |
5 | 5 |
|
| 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._ |
6 | 8 | 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/) |
9 | 11 | - The 4 cookie products should appear side by side in one row on large screens |
10 | 12 | - The 4 cookies should appear one per row on smaller screens |
11 | 13 | -  |
12 | | -3. Apply styling to make the page look as follows: |
| 14 | +3. Apply styling to make the page responsive as follows: |
13 | 15 | - On larger screens: |
14 | 16 | -  |
15 | 17 | - On smaller screens: |
16 | 18 | -  |
17 | 19 | 4. Using only bootstrap styles, and not moving any html tags, make the cookie products alternate as follows on larger screens: |
18 | 20 | -  |
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) |
20 | 23 | - *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 |
23 | 29 |
|
24 | 30 | ## Project 2: Build a personal (professional) web page for yourself |
25 | 31 |
|
|
0 commit comments