This assignment from video 1 to 5.

HTML = Hypertext Markup Language

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This Is Description For My First">
<title>My First Page</title>
<style></style>
<script></script>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>This Is My First Page</h1>
</body>
</html>



Question 01 => No
Question 02 => Yes
Question 03 => No
Question 04 => No

<!DOCTYPE html>
<html lang="en">
<head>
<!--
Charset is used to identify the languages that the website will support
for example english,arabic,etc.
-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
The description tag is used to help the website to appear in the search engines.
-->
<meta name="description" content="This Is Description For My First">
<!--
title is used to make a title for your web pages.
-->
<title>My First Page</title>
<!--
style tag is used to type CSS code inside html file
-->
<style></style>
<!--
script tag is used to type JavaScript code inside html file
-->
<script></script>
<!--
link is used to ldentify a file and it's relation with the current file.
-->
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>This Is My First Page</h1>
</body>
</html>
