Created
January 22, 2019 10:59
-
-
Save lirenyeo/c1e369e7ea04e002655620f6daebc953 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html lang="en"> | |
| <head> | |
| <title>Day 2 Exercise</title> | |
| <!-- Link your CSS to this file --> | |
| </head> | |
| <body> | |
| <!-- RULE 1: NO MODIFICATION ON HTML --> | |
| <!-- RULE 2: NO INLINE-STYLING --> | |
| <!-- EXERCISE #1 --> | |
| <div class="foo"> | |
| <div class="bar">Bar</div> | |
| <div class="bar">Bar</div> | |
| </div> | |
| <div class="bar">Outer Bar</div> | |
| <!-- EXERCISE #2 --> | |
| <strong>Fruits and Veges</strong> | |
| <ul id="fruits-veges-list"> | |
| <li>Apple</li> | |
| <li>Broccoli</li> | |
| <li>Watermelon</li> | |
| <li>Spinach</li> | |
| <li>Durian</li> | |
| <li>Cabbage</li> | |
| </ul> | |
| <!-- EXERCISE #3 --> | |
| <img | |
| src="https://s3-ap-southeast-1.amazonaws.com/next-neo-images/images/b8cb9181-4ded-450b-8db4-22c2633df241-edwin.png" | |
| alt="young-edwin" | |
| /> | |
| <!-- EXERCISE #4 --> | |
| <div><strong>Hello</strong></div> | |
| <div class="lorem"> | |
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptates, | |
| similique consectetur iusto mollitia esse corrupti laboriosam numquam amet | |
| cum vel ut quod voluptatem consequatur eum necessitatibus architecto! | |
| </div> | |
| <p>Did you code during the weekend?</p> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment