-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 932 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 932 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="utf-8">
<title>Homepage</title>
<link rel="stylesheet" type="text/css" href ="css/style.css">
</head>
<body>
<div class="front">
<div class="container">
<header>
<h2 id="name">Sachita Malhotra</h2>
<nav>
<ul>
<a class="active" href="index.html"><li>Home</li></a>
<a href="blog.html"><li>Blog</li></a>
<a href="contact.html"><li>Contact</li></a>
</ul>
</nav>
</header>
</div>
<div class ="side-hover">
<p>THIS IS MY FIRST BLOG.I AM MAKING IT USING HTML CSS</p>
</div>
</div>
</body>
</html>