DEV Community

Suma
Suma

Posted on • Edited on

WHAT IS HTML

HTML is the hypertext markup language
Hyper Text means text that connects to other pages through links, allowing users to navigate easily from one page to another page the word "Markup" means using symbols called tags links <a> , <p>
It is the foundation of every web pages
It uses tags to tell the browser how to display content
It is the standard language
It's used do create web pages and design

HTML STRUCTURE

<!DOCTYPE HTML>
<html>
  <head>
    <title>Page Title</title>
  </head>
  <body>
    <h1>Main Heading</h1>
    <p>This is a paragraph of text.</p>
  </body>
</html>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)