Skip to content

Commit 4f1c404

Browse files
committed
starter 02 finished
1 parent 10de6bc commit 4f1c404

File tree

8 files changed

+136
-0
lines changed

8 files changed

+136
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>BLOG</title>
6+
</head>
7+
<body>
8+
<h2>BLOG</h2>
9+
<a href="index.html">Back to home</a>
10+
</body>
11+
</html>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<meta charset="UTF-8" />
4+
<head>
5+
<title>The Basic Language of the Web: HTML</title>
6+
</head>
7+
<body>
8+
<header>
9+
<h1>📘 The Code Magazine</h1>
10+
<nav>
11+
<a href="blog.html">Blog</a>
12+
<a href="#">Challenges</a>
13+
<a href="#">Flexbox</a>
14+
<a href="#">CSS Grid</a>
15+
</nav>
16+
</header>
17+
<article>
18+
<header>
19+
<h2>The Basic Language of the Web: HTML</h2>
20+
<img
21+
src="img/laura-jones.jpg"
22+
alt="Headshot of Laura Jones"
23+
width="50"
24+
height="50"
25+
/>
26+
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
27+
<img
28+
src="img/post-img.jpg"
29+
alt="HTML code on a screen"
30+
width="500"
31+
height="200"
32+
/>
33+
</header>
34+
<p>
35+
All modern websites and web applications are built using three
36+
fundamental technologies: HTML, CSS and JavaScript. These are the
37+
languages of the web.
38+
</p>
39+
<p>
40+
In this post, let's focus on HTML. We will learn what HTML is all about,
41+
and why you too should learn it.
42+
</p>
43+
44+
<h3>What is HTML?</h3>
45+
<p>
46+
HTML stands for <strong>H</strong>yper<strong>T</strong>ext
47+
<strong>M</strong>arkup <strong>L</strong>anguage It's a markup language
48+
that web developers use to structure and describe the content of a
49+
webpage (not a programming language).
50+
</p>
51+
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+
58+
<p>In HTML, each element is made up of 3 parts:</p>
59+
<ol>
60+
<li>The opening tag</li>
61+
<li>The closing tag</li>
62+
<li>The actual element</li>
63+
</ol>
64+
<p>
65+
You can learn more at
66+
<a
67+
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
68+
target="_blank"
69+
>MDN Web Docs</a
70+
>.
71+
</p>
72+
73+
<h3>Why should you learn HTML?</h3>
74+
<p>
75+
There are countless reasons for learning the fundamental language of the
76+
web. Here are 5 of them:
77+
</p>
78+
<ul>
79+
<li>To be able to use the fundamental web dev language</li>
80+
<li>
81+
To hand-craft beautiful websites instead of relying on tools like
82+
Worpress or Wix
83+
</li>
84+
<li>To build web applications</li>
85+
<li>To impress friends</li>
86+
<li>To have fun 😃</li>
87+
</ul>
88+
89+
<p>Hopefully you learned something new here. See you next time!</p>
90+
</article>
91+
92+
<aside>
93+
<h4>Related posts</h4>
94+
<ul>
95+
<li>
96+
<img
97+
src="img/related-1.jpg"
98+
alt="Person programming"
99+
width="75"
100+
height="75"
101+
/>
102+
<a href="#">How to Learn Web Development</a>
103+
<p>By Jonas Schmedtmann</p>
104+
</li>
105+
<li>
106+
<img src="img/related-2.jpg" alt="Lightning" width="75" height="75" />
107+
<a href="#">The Unknown Powers of CSS</a>
108+
<p>By Jim Dillon</p>
109+
</li>
110+
<li>
111+
<img
112+
src="img/related-3.jpg"
113+
alt="JavaScript code on a screen"
114+
width="75"
115+
height="75"
116+
/>
117+
<a href="#">Why JavaScript is Awesome</a>
118+
<p>By Matilda</p>
119+
</li>
120+
</ul>
121+
</aside>
122+
123+
<footer>Copyright &copy; 2027 by The Code Magazine.</footer>
124+
</body>
125+
</html>

0 commit comments

Comments
 (0)