<!DOCTYPE>
<!DOCTYPE>
// Defines the document type // Declaration is NOT case sensitive <!DOCTYPE html>
<!-- Commnent -->
<!-- Commnent -->
// Defines a comment <!-- Some commnent -->
<html>
<html>
// Defines an HTML document <html> // Code </html>
<head>
<head>
// Contains metadata/information for the document
<html>
<head>
// Some content
</head>
</html>
<body>
<body>
// Defines the document's body <bod>Y // Content </bod>Y
<title>
<title>
// Defines a title for the document // Should be inside head tag <title> Some title </title>
<meta>
<meta>
// Defines metadata about an HTML document
// Should be inside head tag
<meta charset="UTF-8">
<meta name="description" content="Some text">
<meta name="keywords" content="Some text,Some text,Some text">
<meta name="author" content="Some Text">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
// Attributes
charset
content
http-equiv
name
<base>
<base>
// Specifies the base URL/target for all relative URLs in a documentt // Should be inside head tag <base href="Some_path" target="_blank"> // Attributes href target
<h1> to <h6>
<h1> to <h6>
// Defines HTML headings <h1> Some text </h1> <h2> Some text </h2> <h3> Some text </h3> <h4> Some text </h4> <h5> Some text </h5> <h6> Some text </h6>
<p>
<p>
// Defines a paragraph <p> Some paragraph content </p>
<br>
<br>
// Inserts a single line break <br>
<hr>
<hr>
// Defines a thematic change in the content
// Insert a horizontal line
<hr>