-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (26 loc) · 1.02 KB
/
index.html
File metadata and controls
27 lines (26 loc) · 1.02 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
27
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<title>Home Page</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/home.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Great+Vibes&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav class="nav-bar">
<a href="./index.html">Home</a>
<a href="./about_me.html">About me</a>
<a href="./gallery.html">My Gallery</a>
<a href="./contact.html">Contact Me</a>
</nav>
</header>
<section class="section">
<h1>I'm Shivkesh</h1>
<p>a Programmer</p>
</section>
</body>
</html>