-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLecture 02.html
More file actions
22 lines (21 loc) · 967 Bytes
/
Lecture 02.html
File metadata and controls
22 lines (21 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- Halo Students now we will study about Link, Mata Tags topic -->
<!-- This is Our Lecture Number 2 of HTML Course-->
<!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 tags is used for Website SEO ,adding description , important messages -->
<meta name="ZA5starCoder" Discription="This Lecture is Upload on Github">
<meta Name="Keywords" keywords="HTML,HTML full Course,Web development">
<!-- Now we will discuse about link -->
<!-- Link is used to link many external files like CSS , Javascript etc -->
<!-- Now i create a demo css file to show you how link is work -->
<link rel="stylesheet" href="style.css">
<script src="Logic.js"></script> <!-- Link Javascript file -->
<title>HTML Full Course</title>
</head>
<body>
</body>
</html>