html-roadmap

HTML Roadmap

HTML (Hypertext Markup Language) is a markup language used to create web pages. HTML consists of different elements, tags, and attributes that define the structure and content of the web page.

HTML Tag (Elements)

<h1>This is HTML heading one</h1>
<h2>This is HTML heading two</h2>
<h3>This is HTML heading three</h3>
<h4>This is HTML heading four</h4>
<h5>This is HTML heading five</h5>
<h6>This is HTML heading six</h6>
<h7>This is not a heading . its default paragraph.</h7>

HTML Attribute

    <img src="example.jpg" alt="Example image">

HTML Template

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML Document</title>
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
    <meta name="description" content="">
    <meta name="keywords" content="">
</head>
<body>
    
</body>
</html>