-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1_basic.html
38 lines (28 loc) · 1.22 KB
/
1_basic.html
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
30
31
32
33
34
35
36
37
38
<!-- this is DOCTYPE -->
<!DOCTYPE html>
<!-- Our html code starts here -->
<html lang = "en">
<!-- Our head tag starts here -->
<head>
<meta charset="UTF-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<!-- This tag is used to make your website responsive and adjust its
width in such a way that its look good in both pc and mobile.It helps
in making the website mobile friendly also. -->
<meta http-equiv = “X-UA-Compatible” content = "ie=edge">
<!-- It helps any particular website to open in the highest compatibility mode available. -->
<meta name = "Description" content = "This is web development course">
<title>Basic Tags of HTML</title>
<!-- This is how I include external css -->
<link rel="stylesheet" href = "basic.css">
<!-- This is how I include external javascript -->
<script src = "basic.js" ></script>
</head>
<!-- Our body tag starts here -->
<body>
Hi!I am Tapati.I studies Computer Science and Engineering in
Government college of Engineering and Textile Technology,Berhampore.
</body>
</html>
<!-- Here we see all the basic tags such as <head></head>,<title></title>,<body></body>
etc.And we also see that how to link external js and css -->