Skip to content

Commit 24da0ba

Browse files
committed
initial
1 parent 10de6bc commit 24da0ba

File tree

2 files changed

+113
-0
lines changed

2 files changed

+113
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UFT-8" />
5+
<title>Blog</title>
6+
</head>
7+
8+
<body>
9+
<h2>Blog</h2>
10+
<a href="index.html">Index</a>
11+
</body>
12+
</html>
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<!DOCTYPE html>
2+
3+
<html lang="en">
4+
<head>
5+
<meta charset="utf-8" />
6+
<title>The basic language of the web:html</title>
7+
</head>
8+
<!-- each page on have one title, h1-h6 -->
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+
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
22+
<img src="laura-jones.jpg" alt="not found" width="100" height="100" />
23+
<!-- <strong> for bold
24+
<em>for italic -->
25+
<h2>The Basic Language of the Web:HTML</h2>
26+
<img src="post-img.jpg" alt="post image" width="600" height="200" />
27+
<p>
28+
All modern websites and web applications are built using three
29+
<em>fundamental</em>
30+
technologies: HTML, CSS and JavaScript. These are the languages of the
31+
web.
32+
</p>
33+
<p>
34+
In this post, let's focus on HTML. We will learn what HTML is all about,
35+
and why you too should learn it.
36+
</p>
37+
<h3>What is HTML?</h3>
38+
<p>
39+
HTML stands for HyperText Markup Language. It's a markup language that
40+
web developers use to structure and describe the content of a webpage
41+
(not a programming language).
42+
</p>
43+
<p>
44+
HTML consists of elements that describe different types of content:
45+
paragraphs, links, headings, images, video, etc. Web browsers understand
46+
HTML and render HTML code as websites.
47+
</p>
48+
<p>In HTML, each element is made up of 3 parts:</p>
49+
<ol>
50+
<li>1.The opening tag</li>
51+
<li>2.The closing tag</li>
52+
<li>3.The actual element</li>
53+
</ol>
54+
<!-- target blank will open in a new tab -->
55+
<p>
56+
You can learn more at the
57+
<a
58+
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
59+
target="_blank"
60+
>MDN Web Docs</a
61+
>
62+
</p>
63+
<h3>Why sould 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+
<h4>Related posts</h4>
79+
<ul>
80+
<li>
81+
<img src="related-1.jpg" height="100" width="100" /><a href="#"
82+
>How to learn web development</a
83+
>
84+
<p>By jonas scheme</p>
85+
</li>
86+
<li>
87+
<img src="related-2.jpg" height="100" width="100" /><a href="#"
88+
>The unknown power of css</a
89+
>
90+
</li>
91+
<li>
92+
<img src="related-3.jpg" height="100" width="100" /><a href="#"
93+
>wht JavaScript is awesome</a
94+
>
95+
</li>
96+
</ul>
97+
</article>
98+
</body>
99+
100+
<footer>Copyright &</footer>
101+
</html>

0 commit comments

Comments
 (0)