Skip to content

Commit d691168

Browse files
committed
Finished HTML fundamentals
1 parent 8fc0119 commit d691168

File tree

8 files changed

+143
-0
lines changed

8 files changed

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

0 commit comments

Comments
 (0)