-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSome-Notes.html
More file actions
26 lines (20 loc) · 882 Bytes
/
Some-Notes.html
File metadata and controls
26 lines (20 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!-- THIS CODE INCLUDES SOME WAYS IN WHICH WE CAN INCLUDE EXTERNAL FILES IN OUR HTML CODE -->
<!-- ALSO SOME MORE METADATA NAMES AND CONTENTS HAVE BEEN ADDED -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="This is description">
<meta name="keywords" content="html, html tutorials, wed development">
<meta name="robots" content ="INDEX, FOLLOW">
<title>Document</title>
<!-- THIS IS HOW YOU INCLUDE EXTERNAL CSS IN HTML -->
<link rel="stylesheet" href="pranit.css">
<!-- THIS IS HOW YOU INCLUDE EXTERNAL JS -->
<script src="pranit.js"></script>
</head>
<body>
</body>
</html>