|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <title>The Basic Langauge of The Web: HTML</title> |
| 5 | + </head> |
| 6 | + <body> |
| 7 | + <!-- Comment Block, this his how you do comments in html--> |
| 8 | + <h1>📘 The Code Magazine</h1> |
| 9 | + <h2>The Basic Langauge of The Web: HTML</h2> |
| 10 | + <p>Posted by <strong>Laura Jones </strong> on Monday, June 21st 2027</p> |
| 11 | + <p> |
| 12 | + All modern websites and web applications are built using three <em>fundamental</em> technologies: HTML, CSS and |
| 13 | + JavaScript. These are the languages of the web. |
| 14 | + </p> |
| 15 | + <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> |
| 16 | + <h3>What is HTML?</h3> |
| 17 | + <p> |
| 18 | + <strong>HTML </strong> stands for <strong>H</strong>yper<strong>T</strong>ext <strong>M</strong>arkup |
| 19 | + <strong>L</strong>anguage. It's a markup language that web developers use to structure and describe the content of |
| 20 | + a webpage (not a programming language). |
| 21 | + </p> |
| 22 | + <p> |
| 23 | + HTML consists of elements that describe different types of content: paragraphs, links, headings, images, video, |
| 24 | + etc. Web browsers understand HTML and render HTML code as websites. |
| 25 | + </p> |
| 26 | + <p>In HTML, each element is made up of 3 parts:</p> |
| 27 | + <ol> |
| 28 | + <li>The opening tag</li> |
| 29 | + <li>The closing tag</li> |
| 30 | + <li>The actual element</li> |
| 31 | + <li>You can learn more at the MDN Web Docs.</li> |
| 32 | + </ol> |
| 33 | + |
| 34 | + <h3>Why should you learn HTML</h3> |
| 35 | + |
| 36 | + <p>There are countless reasons for learning the fundamental language of the web. Here are 5 of them:</p> |
| 37 | + |
| 38 | + <ul> |
| 39 | + <li>To be able to use the fundamental web dev language</li> |
| 40 | + <li>To hand-craft beautiful websites instead of relying on tools like Worpress or Wix</li> |
| 41 | + <li>To build web applications</li> |
| 42 | + <li>To impress friends To have fun 😃</li> |
| 43 | + </ul> |
| 44 | + <p>Hopefully you learned something new here. See you next time!</p> |
| 45 | + </body> |
| 46 | +</html> |
0 commit comments