-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtut1.html
More file actions
24 lines (22 loc) · 791 Bytes
/
Copy pathtut1.html
File metadata and controls
24 lines (22 loc) · 791 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
<!-- this is doctype-->
<!DOCTYPE html>
<!-- html code starts here-->
<html lang="en">
<head>
<!--html head tag starts here-->
<!-- meta is seo that is search engine optimisation-->
<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,web development" />
<meta name="robots" content="INDEX,FOLLOW" />
<title>mywebsite</title>
<!--this is how we include css external -->
<link rel="stylesheet" href="sayali.css" />
</head>
<!--body tag starts here-->
<body>
this is so cool sayali.
</body>
</html>