okay Let’s Create Our First Page.

Untitled

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Rem01x</title>
</head>
<body>
    <h1>Welcome Back Uchiha Rem01x</h1>
    <p>Uchiha Rem01x Is a Junior Penetration Tester Working At Zerosploit MEA</p>
</body>
</html>

Untitled

As observed we created a simple page with a header and some text in it.

Head And Nested Elements.

we will take about the meta tag.

Now let’s discuses the meta attributes.

1) Charset

Charset attribute is used to identify the languages that the website will support.

Ex: Simple Charset Code.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Rem01x</title>
</head>
<body>
    <h1>Welcome Back Uchiha Rem01x</h1>
    <p>Uchiha Rem01x Is a Junior Penetration Tester Working At Zerosploit MEA</p>
</body>
</html>

Untitled

The UTF-8 is the most common Charset value as it supports maybe all the languages.

2) Description

The description is used to help the google search engines descript your website.

Untitled

As observed this is what the description looks like in the browser.

Ex: Simple Description Code.