|
8 | 8 | <!-- <strong> for bold -->
|
9 | 9 | <!-- <emphasize> for italic-->
|
10 | 10 | <body>
|
11 |
| - <h1>📘 The Code Magazine</h1> |
12 |
| - <img |
13 |
| - src="/starter/02-HTML-Fundamentals/laura-jones.jpg" |
14 |
| - alt="Picture of the author: laura Jones" |
15 |
| - width="50" |
16 |
| - height="50" |
17 |
| - /> |
18 |
| - <p>Posted by <strong>Jones</strong> on Monday, June 21st 2027</p> |
19 |
| - <!-- Here are the different text sizes in the basic html --> |
20 |
| - <!-- <h1>The Basic Language of the Web: HTML</h1> --> |
| 11 | + <header> |
| 12 | + <h1>📘 The Code Magazine</h1> |
21 | 13 |
|
22 |
| - <!-- Images added to the html doc --> |
23 |
| - <img |
24 |
| - src="/starter/02-HTML-Fundamentals/post-img.jpg" |
25 |
| - alt="HTML code on the screen" |
26 |
| - width="500" |
27 |
| - height="200" |
28 |
| - /> |
| 14 | + <nav> |
| 15 | + <a href="./blog.html">Blog</a> |
| 16 | + <a href="#">Challenges</a> |
| 17 | + <a href="#">Flexbox</a> |
| 18 | + <a href="#">CSS grid</a> |
| 19 | + </nav> |
| 20 | + </header> |
29 | 21 |
|
30 |
| - <h2>The Basic Language of the Web: HTML</h2> |
31 |
| - <!-- <h3>The Basic Language of the Web: HTML</h3> --> |
32 |
| - <!-- <h4>The Basic Language of the Web: HTML</h4> --> |
33 |
| - <!-- <h5>The Basic Language of the Web: HTML</h5> --> |
34 |
| - <!-- <h6>The Basic Language of the Web: HTML</h6> --> |
| 22 | + <article> |
| 23 | + <header> |
| 24 | + <h2>The Basic Language of the Web: HTML</h2> |
35 | 25 |
|
36 |
| - <p> |
37 |
| - All modern websites and web applications are built using three fundamental |
38 |
| - technologies: HTML, CSS and JavaScript. These are the languages of the |
39 |
| - web. |
40 |
| - </p> |
41 |
| - <p> |
42 |
| - In this post, let's focus on HTML. We will learn what HTML is all about, |
43 |
| - and why you too should learn it. |
44 |
| - </p> |
45 |
| - <h3>What is HTML?</h3> |
46 |
| - <p> |
47 |
| - HTML stands for <strong>H</strong>yper <strong>T</strong>ext |
48 |
| - <strong>M</strong>arkup <strong>L</strong>anguage. It's a markup language |
49 |
| - that web developers use to structure and describe the content of a webpage |
50 |
| - (not a programming language). |
51 |
| - </p> |
| 26 | + <img |
| 27 | + src="/starter/02-HTML-Fundamentals/laura-jones.jpg" |
| 28 | + alt="Picture of the author: laura Jones" |
| 29 | + width="50" |
| 30 | + height="50" |
| 31 | + /> |
| 32 | + <p>Posted by <strong>Jones</strong> on Monday, June 21st 2027</p> |
| 33 | + <!-- Here are the different text sizes in the basic html --> |
| 34 | + <!-- <h1>The Basic Language of the Web: HTML</h1> --> |
52 | 35 |
|
53 |
| - <p> |
54 |
| - HTML consists of elements that describe different types of content: |
55 |
| - paragraphs, links, headings, images, video, etc. Web browsers understand |
56 |
| - HTML and render HTML code as websites. |
57 |
| - </p> |
| 36 | + <!-- Images added to the html doc --> |
| 37 | + <img |
| 38 | + src="/starter/02-HTML-Fundamentals/post-img.jpg" |
| 39 | + alt="HTML code on the screen" |
| 40 | + width="500" |
| 41 | + height="200" |
| 42 | + /> |
| 43 | + </header> |
| 44 | + <!-- <h3>The Basic Language of the Web: HTML</h3> --> |
| 45 | + <!-- <h4>The Basic Language of the Web: HTML</h4> --> |
| 46 | + <!-- <h5>The Basic Language of the Web: HTML</h5> --> |
| 47 | + <!-- <h6>The Basic Language of the Web: HTML</h6> --> |
58 | 48 |
|
59 |
| - <p>In HTML, each element is made up of 3 parts:</p> |
| 49 | + <p> |
| 50 | + All modern websites and web applications are built using three |
| 51 | + fundamental technologies: HTML, CSS and JavaScript. These are the |
| 52 | + languages of the web. |
| 53 | + </p> |
| 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 | + <h3>What is HTML?</h3> |
| 59 | + <p> |
| 60 | + HTML stands for <strong>H</strong>yper <strong>T</strong>ext |
| 61 | + <strong>M</strong>arkup <strong>L</strong>anguage. It's a markup |
| 62 | + language that web developers use to structure and describe the content |
| 63 | + of a webpage (not a programming language). |
| 64 | + </p> |
60 | 65 |
|
61 |
| - <ol> |
62 |
| - <li>The opening tag</li> |
63 |
| - <li>The closing tag</li> |
64 |
| - <li>The actual element</li> |
65 |
| - </ol> |
| 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> |
66 | 71 |
|
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 | + <p>In HTML, each element is made up of 3 parts:</p> |
72 | 73 |
|
73 |
| - <ul> |
74 |
| - <li>To be able to use the fundamental web dev language</li> |
75 |
| - <li> |
76 |
| - To hand-craft beautiful websites instead of relying on tools like |
77 |
| - Worpress or Wix |
78 |
| - </li> |
79 |
| - <li>To build web applications</li> |
80 |
| - <li>To impress friends</li> |
81 |
| - <li>To have fun 😃</li> |
82 |
| - </ul> |
| 74 | + <ol> |
| 75 | + <li>The opening tag</li> |
| 76 | + <li>The closing tag</li> |
| 77 | + <li>The actual element</li> |
| 78 | + </ol> |
83 | 79 |
|
84 |
| - <p>Hopefully you learned something new here. See you next time!</p> |
| 80 | + <p> |
| 81 | + You can learn more at the |
| 82 | + <a |
| 83 | + href="https://developer.mozilla.org/en-US/docs/Web/HTML" |
| 84 | + target="_blank" |
| 85 | + >MDN Web Docs</a |
| 86 | + >. |
| 87 | + </p> |
| 88 | + |
| 89 | + <h3>Why should you learn HTML?</h3> |
| 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 | + <footer>Copyright © 2027 by the Code Magazine</footer> |
85 | 110 | </body>
|
86 | 111 | </html>
|
| 112 | + |
| 113 | +<!-- semantics --> |
0 commit comments