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