-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML_first.html
More file actions
24 lines (20 loc) · 1.01 KB
/
HTML_first.html
File metadata and controls
24 lines (20 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!-- HTML stands for Hyper Text Markup Language.
It is a standard markup language for giving skeleton to the web pages.
HTML describes the structure/body of the web pages.
(CSS adds beauty and JavaScript adds brain to our web pages). -->
<!DOCTYPE html> <!-- It tells the browser the document type i.e. it's here an HTML5 file -->
<html lang="en">
<head> <!--Inside head tag we put the metadata i.e. data about data. Also we do page linking here-->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Introduction to HTML, HTML structure and head tag</title> <!--This gives title to the webpage-->
<!--Including external CSS file-->
<link rel="stylesheet" href="myCSS.css">
<!--Including external JavaScript file-->
<script src="myJavaScript.js"></script>
</head>
<body> <!--Inside body tag we write the content of the web page-->
Body of the webpage.
</body>
</html>