Skip to content

Commit b25e0f7

Browse files
committed
Created ordered and unordered lists of items. Created a couple more paragraphs.
1 parent adf5099 commit b25e0f7

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

starter/02-HTML-Fundamentals/index.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,32 @@ <h3>What is HTML?</h3>
4141
paragraphs, links, headings, images, video, etc. Web browsers
4242
understand HTML and render HTML code as websites.
4343
</p>
44+
<p>In HTML, each element is made up of 3 parts:</p>
45+
46+
<ol>
47+
<li>The opening tag</li>
48+
<li>The closing tag</li>
49+
<li>The actual element</li>
50+
</ol>
4451

4552
<h3>Why should you learn HTML?</h3>
53+
<p>
54+
There are countless reasons for learning the fundamental language of
55+
the web. Here are 5 of them:
56+
</p>
57+
58+
<ul>
59+
<li>To be able to use the fundamental web dev language</li>
60+
<li>
61+
To hand-craft beautiful websites instead of relying on tools
62+
like
63+
</li>
64+
<li>
65+
Worpress or Wix To build web applications To impress friends
66+
</li>
67+
<li>To have fun 😃</li>
68+
</ul>
69+
70+
<p>Hopefully you learned something new here. See you next time!</p>
4671
</body>
4772
</html>

0 commit comments

Comments
 (0)