-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbasics.html
More file actions
29 lines (26 loc) · 1.08 KB
/
basics.html
File metadata and controls
29 lines (26 loc) · 1.08 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
25
26
27
28
29
<!DOCTYPE html>
<!--My HTML code starts here-->
<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 a description">
<meta name="keywords" content = "python,python tutorials,web development">
<meta name = "robots" content = "INDEX,FOLLOW">
<title>This is title</title>
<!-- this is how you include css -->
<link rel="stylesheet" href="chesta.css">
<!-- this is how you include javascript -->
<script src="chesta.js"></script>
</head>
<body>
<h1>Chesta</h1>
<h2>Chesta</h2>
<h3>Chesta</h3>
<h4>Chesta</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Libero perspiciatis consequuntur veniam quidem asperiores eveniet ad nostrum doloribus, <em>this is highlighted</em> consequatur ex quibusdam expedita atque. Ad enim quae a mollitia ipsa itaque voluptate ab beatae?</p>
<p>first <br> hgfg <br>fcg <br><br>
</p>
</body>
</html>