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