-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (70 loc) · 2.91 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" rel="stylesheet" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="style.css" rel="stylesheet" />
<title>The Basic Language of the Web</title>
<!-- <style>
h1 {
color: beige;
}
</style> -->
</head>
<body>
<div class="container">
<header class="main-header" id="main">
<h1>📘 The Code Magazine</h1>
<nav>
<a href="blog.html" target="_blank">Blog</a>
<a href="#">Challenges</a>
<a href="#">Flexbox</a>
<a href="#">CSS Grid</a>
</nav>
</header>
<article>
<h2>The Basic Language of the Web: HTML</h2>
<img src="laura-jones.jpg" width="50" height="50" alt="Photo of Laura Jones" />
<p>Posted by <strong>Ishir Agrawal</strong> on Monday, June 21st 2021</p>
<img src="post-img.jpg" width="400" height="200" alt="html code" />
<p>
All modern websites and web applications are built using three <em>fundamental </em>technologies: HTML, CSS
and JavaScript. These are the languages of the web.
</p>
<p>In this post, let's focus on HTML. We will learn what HTML is all about, and why you too should learn it.</p>
<h3>What is HTML?</h3>
<p>
HTML stands for <strong>H</strong>yperText Markup Language. It's a markup language that web developers use to
structure and describe the content of a webpage (not a programming language).
</p>
<p>
HTML consists of elements that describe different types of content: paragraphs, links, headings, images,
video, etc. Web browsers understand HTML and render HTML code as websites.
</p>
<p>In HTML, each element is made up of 3 parts:</p>
<ol>
<li>The opening tag</li>
<li>The closing tag</li>
<li>The actual element</li>
</ol>
<p>
You can learn more at the
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML" target="_blank">MDN Web Docs</a>
</p>
<h3>Why should you learn HTML?</h3>
<p>There are countless reasons for learning the fundamental language of the web. Here are 5 of them:</p>
<ul>
<li>To be able to use the fundamental web dev language</li>
<li>To hand-craft beautiful websites instead of relying on tools like Worpress or Wix</li>
<li>To build web applications</li>
<li>To impress friends</li>
<li>To have fun 😃</li>
</ul>
</article>
</div>
</body>
</html>