-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsemantic.html
More file actions
48 lines (47 loc) · 963 Bytes
/
Copy pathsemantic.html
File metadata and controls
48 lines (47 loc) · 963 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale:1.0">
<title>semantic example</title>
<!--
<style media="screen">
body{
background-color: powderblue;
margin: auto;
}
h1{
color: blue;
}
p{
color: red;
}
</style>
-->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Sage Training Institute</h1>
</header>
<nav>
<ul>
<li><a href="/home">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/contact">Contact us</a></li>
</ul>
</nav>
<main>
<section>
<p> This is a section</p>
</section>
<article class="">
<p> This is article </p>
</article>
<aside class="">
<p>This is a sidebar</p>
</aside>
</main>
<footer>Sage Company</footer>
</body>
</html>