Skip to content

Commit 48ec4a5

Browse files
committed
fix: improve murkup
1 parent 451e8a7 commit 48ec4a5

File tree

1 file changed

+57
-54
lines changed

1 file changed

+57
-54
lines changed

starter/02-HTML-Fundamentals/index.html

Lines changed: 57 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -18,64 +18,67 @@ <h5>The BasicLanguage of the WEB: HTML</h5>
1818
<h6>The BasicLanguage of the WEB: HTML</h6> -->
1919

2020
<h1>📘 The Code Magazine</h1>
21+
<header>
22+
<nav>
23+
<a href="blog.html">Blog</a>
24+
<a href="#">Challenges</a>
25+
<a href="#">Flexbox</a>
26+
<a href="#">CSS Grid</a>
27+
</nav>
28+
</header>
2129

22-
<nav>
23-
<a href="blog.html">Blog</a>
24-
<a href="#">Challenges</a>
25-
<a href="#">Flexbox</a>
26-
<a href="#">CSS Grid</a>
27-
</nav>
30+
<article>
31+
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
2832

29-
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
33+
<h2>The BasicLanguage of the WEB: HTML</h2>
34+
<p>
35+
All modern websites and web applications are built using three
36+
<em>fundamental</em>
37+
technologies: HTML, CSS and JavaScript. These are the languages of the
38+
web.
39+
</p>
40+
<p>
41+
In this post, let's focus on HTML. We will learn what HTML is all about,
42+
and why you too should learn it.
43+
</p>
3044

31-
<h2>The BasicLanguage of the WEB: HTML</h2>
32-
<p>
33-
All modern websites and web applications are built using three
34-
<em>fundamental</em>
35-
technologies: HTML, CSS and JavaScript. These are the languages of the
36-
web.
37-
</p>
38-
<p>
39-
In this post, let's focus on HTML. We will learn what HTML is all about,
40-
and why you too should learn it.
41-
</p>
42-
43-
<h3>What is HTML?</h3>
44-
<p>
45-
HTML stands for <strong>H</strong>yper<strong>T</strong>ext
46-
<strong>M</strong>arkup <strong>L</strong>anguage. It's a markup language
47-
that web developers use to structure and describe the content of a webpage
48-
(not a programming language).
49-
</p>
50-
<p>
51-
HTML consists of elements that describe different types of content:
52-
paragraphs, links, headings, images, video, etc. Web browsers understand
53-
HTML and render HTML code as websites.
54-
</p>
55-
<p>In HTML, each element is made up of 3 parts:</p>
56-
<ol>
57-
<li>The opening tag</li>
58-
<li>The closing tag</li>
59-
<li>The actual element</li>
60-
<li>You can learn more at the MDN Web Docs.</li>
61-
</ol>
45+
<h3>What is HTML?</h3>
46+
<p>
47+
HTML stands for <strong>H</strong>yper<strong>T</strong>ext
48+
<strong>M</strong>arkup <strong>L</strong>anguage. It's a markup
49+
language that web developers use to structure and describe the content
50+
of a webpage (not a programming language).
51+
</p>
52+
<p>
53+
HTML consists of elements that describe different types of content:
54+
paragraphs, links, headings, images, video, etc. Web browsers understand
55+
HTML and render HTML code as websites.
56+
</p>
57+
<p>In HTML, each element is made up of 3 parts:</p>
58+
<ol>
59+
<li>The opening tag</li>
60+
<li>The closing tag</li>
61+
<li>The actual element</li>
62+
<li>You can learn more at the MDN Web Docs.</li>
63+
</ol>
6264

63-
<h3>Why should you learn HTML?</h3>
64-
<p>
65-
There are countless reasons for learning the fundamental language of the
66-
web. Here are 5 of them:
67-
</p>
68-
<ul>
69-
<li>To be able to use the fundamental web dev language</li>
70-
<li>
71-
To hand-craft beautiful websites instead of relying on tools like
72-
Worpress or Wix
73-
</li>
74-
<li>To build web applications</li>
75-
<li>To impress friends</li>
76-
<li>To have fun 😃</li>
77-
</ul>
78-
<p>Hopefully you learned something new here. See you next time!</p>
65+
<h3>Why should you learn HTML?</h3>
66+
<p>
67+
There are countless reasons for learning the fundamental language of the
68+
web. Here are 5 of them:
69+
</p>
70+
<ul>
71+
<li>To be able to use the fundamental web dev language</li>
72+
<li>
73+
To hand-craft beautiful websites instead of relying on tools like
74+
Worpress or Wix
75+
</li>
76+
<li>To build web applications</li>
77+
<li>To impress friends</li>
78+
<li>To have fun 😃</li>
79+
</ul>
80+
<p>Hopefully you learned something new here. See you next time!</p>
81+
</article>
7982

8083
<aside>
8184
<h4>Related posts</h4>

0 commit comments

Comments
 (0)