Skip to content

Commit fb46985

Browse files
author
Nikhil
committed
practiced starter files and learn basics
1 parent 10de6bc commit fb46985

File tree

16 files changed

+1170
-156
lines changed

16 files changed

+1170
-156
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>BLOG</title>
5+
</head>
6+
<body>
7+
<h2>BLOG</h2>
8+
<a href="index.html"></a>
9+
</body>
10+
</html>
Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
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+
<body>
8+
<!--
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+
17+
<header>
18+
<h1>📘 The Code Magazine</h1>
19+
20+
<nav>
21+
<a href="blog.html">blog</a>
22+
<a href="#">Challenges</a>
23+
<a href="#">Flexbox</a>
24+
<a href="#">CSS Grid</a>
25+
</nav>
26+
</header>
27+
28+
<article>
29+
<header>
30+
<h2>The Basic Language of the Web: HTML</h2>
31+
<img
32+
src="img/laura-jones.jpg"
33+
alt="Head of Lauran jones"
34+
width="50"
35+
height="50"
36+
/>
37+
<p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p>
38+
39+
<img
40+
src="img/post-img.jpg"
41+
alt="HTML code on a screen"
42+
width="500"
43+
height="200"
44+
/>
45+
</header>
46+
47+
<p>
48+
All modern websites and web applications are built using three
49+
<em>fundamental</em>
50+
technologies: HTML, CSS and JavaScript. These are the languages of the
51+
web.
52+
</p>
53+
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+
79+
<p>
80+
You can learn more at
81+
<a
82+
href="https://developer.mozilla.org/en-US/docs/Web/HTML"
83+
target="_blank"
84+
>MDN Web Docs.</a
85+
>
86+
</p>
87+
88+
<h3>Why you should learn HTML</h3>
89+
90+
<p>
91+
There are countless reasons for learning the fundamental language of the
92+
web. Here are 5 of them:
93+
</p>
94+
95+
<ul>
96+
<li>To be able to use the fundamental web dev language</li>
97+
<li>
98+
To hand-craft beautiful websites instead of relying on tools like
99+
Worpress or Wix
100+
</li>
101+
<li>To build web applications</li>
102+
<li>To impress friends</li>
103+
<li>To have fun 😃</li>
104+
</ul>
105+
106+
<p>Hopefully you learned something new here. See you next time!</p>
107+
</article>
108+
109+
<aside>
110+
<h4>Related Posts</h4>
111+
<ul>
112+
<li>
113+
<img
114+
src="img/related-1.jpg"
115+
alt="Person programming"
116+
width="75"
117+
height="75"
118+
/>
119+
<a href="#">How to Learn Web Development</a>
120+
<p>By Jonas Schmedtmann</p>
121+
</li>
122+
<li>
123+
<img src="img/related-2.jpg" alt="Lightning" width="75" height="75" />
124+
<a href="#">The Unknown Powers of CSS</a>
125+
<p>By Jim Dillon</p>
126+
</li>
127+
<li>
128+
<img
129+
src="img/related-3.jpg"
130+
alt="Javascript code"
131+
width="75"
132+
height="75"
133+
/>
134+
<a href="#">Why JavaScript is Awesome</a>
135+
<p>By Matilda</p>
136+
</li>
137+
</ul>
138+
</aside>
139+
140+
<footer>Copyright &copy; 2027 by The Code Magazine.</footer>
141+
</body>
142+
</html>

0 commit comments

Comments
 (0)