|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=devic-width, initial-scale=1.0" /> |
| 6 | + <title>The basic languiage of the web HTML</title> |
| 7 | + </head> |
| 8 | + <body> |
| 9 | + <h1>📘 The Code Magazine</h1> |
| 10 | + <a href="Blog.html" target="_blank">Blog</a |
| 11 | + ><a href="Challenges.html" target="_blank">Challenges</a |
| 12 | + ><a href="Flexbox.html" target="_blank">Flexbox</a |
| 13 | + ><a href="CSSgrid.html" target="_blank">CSS Grid</a> |
| 14 | + <h2>📰 The Basic Language of the Web: HTML</h2> |
| 15 | + <img src="laura-jones.jpg" alt="Laura Jones" width="45" /> |
| 16 | + |
| 17 | + <p>Posted by <strong>Laura Jones</strong> on Monday, June 21st 2027</p> |
| 18 | + |
| 19 | + <img |
| 20 | + src="./post-img.jpg" |
| 21 | + alt="Computer screen showing html code" |
| 22 | + width="400" |
| 23 | + /> |
| 24 | + |
| 25 | + <p> |
| 26 | + All modern websites and web applications are built using three |
| 27 | + <em>fundamental</em> |
| 28 | + technologies: HTML, CSS and JavaScript. These are the languages of the |
| 29 | + web. |
| 30 | + </p> |
| 31 | + <p> |
| 32 | + In this post, let's focus on HTML. We will learn what HTML is all about, |
| 33 | + and why you too should learn it. |
| 34 | + </p> |
| 35 | + <h3>What is HTML?</h3> |
| 36 | + <p> |
| 37 | + HTML stands for <strong>H</strong>yper<strong>T</strong>ext |
| 38 | + <strong>M</strong>arkup <strong>L</strong>anguage. It's a markup language |
| 39 | + that web developers use to structure and describe the content of a webpage |
| 40 | + (not a programming language). |
| 41 | + </p> |
| 42 | + <p> |
| 43 | + HTML consists of elements that describe different types of content: |
| 44 | + paragraphs, links, headings, images, video, etc. Web browsers understand |
| 45 | + HTML and render HTML code as websites. |
| 46 | + </p> |
| 47 | + <p>In HTML, each element is made up of 3 parts:</p> |
| 48 | + |
| 49 | + <ol> |
| 50 | + <li>opening tag</li> |
| 51 | + <li>closing tag</li> |
| 52 | + <li>The actual element</li> |
| 53 | + </ol> |
| 54 | + <p> |
| 55 | + You can learn more at the |
| 56 | + <a |
| 57 | + href="https://developer.mozilla.org/en-US/" |
| 58 | + target="_blank" |
| 59 | + rel="noopener" |
| 60 | + >MDN Web Docs</a |
| 61 | + >. |
| 62 | + </p> |
| 63 | + <h3>Why should you learn HTML?</h3> |
| 64 | + <p> |
| 65 | + There are countless reasons for learning the fundamental language of the |
| 66 | + web. Here are 5 of them: |
| 67 | + </p> |
| 68 | + <ul> |
| 69 | + <li>be able to use the fundamental web dev language</li> |
| 70 | + <li> |
| 71 | + hand-craft beautiful websites instead of relying on tools like Worpress |
| 72 | + or Wix |
| 73 | + </li> |
| 74 | + <li>build web applications</li> |
| 75 | + <li>impress friends</li> |
| 76 | + <li>have fun 😃</li> |
| 77 | + </ul> |
| 78 | + <p>Hopefully you learned something new here. See you next time!</p> |
| 79 | + <h4>Related posts</h4> |
| 80 | + <ol> |
| 81 | + <li> |
| 82 | + <a href="#">How to learn Web Develeopment</a> |
| 83 | + </li> |
| 84 | + <li> |
| 85 | + <a href="#">The Unknown Powers of CSS</a> |
| 86 | + </li> |
| 87 | + <li> |
| 88 | + <a href="#">Why Javascript is Awesome</a> |
| 89 | + </li> |
| 90 | + </ol> |
| 91 | + </body> |
| 92 | +</html> |
0 commit comments