Skip to content

Commit 569a4d5

Browse files
done with 02 html
1 parent 10de6bc commit 569a4d5

File tree

8 files changed

+127
-0
lines changed

8 files changed

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

0 commit comments

Comments
 (0)