-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTUT1.html
More file actions
24 lines (21 loc) · 690 Bytes
/
TUT1.html
File metadata and controls
24 lines (21 loc) · 690 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width= , initial-scale=1.0">
<!-- <meta> name="description" content="This is a description">
<meta> name="keywords" content="HTML, HTML tutorials, web devlopment"> -->
<title>Document</title>
<!-- TO LINK CSS IN HTML -->
<!--
Here we link out the exernal css file with the html file -->
<link rel="stylesheet" href="TUT1.css">
<!-- TO LINK Javascript -->
<script src="shiva.js"></script>
</head>
<body>
<p>Hello everyone</p>
<p id="para1">Everyhting is fine?</p>
</body>
</html>