-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLecture 11.html
More file actions
26 lines (26 loc) · 1.16 KB
/
Lecture 11.html
File metadata and controls
26 lines (26 loc) · 1.16 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
<!-- In this lecture we will discuse about semantic Tags in HTML -->
<!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">
<title>Semantic Tags in HTML</title>
</head>
<body>
<h2>Semantic Tags</h2>
<!-- when we see a website it contain different section like some header section,Footer
section and some Navigation section etc .we can insert These all section
with the help of Semantic Tags -->
<details>
Halo this is Semantic Tags detail. You can see in web server
</details>
<details>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Excepturi, ipsa.</details>
<footer>Lorem ipsum dolor sit.</footer>
<nav>Lorem ipsum dolor sit amet consectetur.</nav>
<main>Lorem ipsum dolor sit amet consectetur.</main>
<!-- Please go on google and check many semantic tags example -->
</body>
</html>
<!-- This is our last lecture of HTML please go and practice these all topics -->
<!---------------------------------------Thanks---------------------------------->