-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (38 loc) · 1.27 KB
/
index.html
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
49
<!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>Keshav Shah's Website</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<header class="header">
<a href="#" class="logo">Keshav Shah</a>
<nav class="navbar">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#skills">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="home">
<div class="home-image">
<img src="Original.png" alt="">
</div>
<div class="home-content">
<h1>Hi, I'm Keshav Shah</h1>
<h3>Aspiring Software Engineer</h3>
<p>
To be filled out later, this is where I will describe myself.
</p>
<div class="home-sci">
<a href="#"><i class='bx bxl-linkedin'></i></a>
</div>
<a href="KeshavResume.pdf" class="btn">Download CV</a>
</div>
</section>
</body>
</html>