-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Aneesh's Website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav>
<div class="logo">
<a href="index.html" style="text-decoration: none; color: white;"><h4>Aneesh Atri</h4></a>
</div>
<ul class="nav-links">
<li class="grow"><a href="about.html">About</a></li>
<li class="grow"><a href="projects.html">Projects</a></li>
</ul>
</nav>
<div class="aboutInfo">
<h4>Hi! I'm</h4>
<h1>Aneesh Atri</h1>
<p>and I love to solve problems.</p>
</div>
<div class="footer">
<div class="left-side">
<p>© Aneesh Atri</p>
</div>
<div class="rightSide">
<a href="http://github.com/aneesh1" style="text-decoration: none; color: black;"><i class="fa fa-github changeToPurple" style="font-size: 30px;"></i></a>
<a href="http://www.linkedin.com/in/aneesh29" style="text-decoration: none; color: black;"><i class="fa fa-linkedin changeToBlue" style="font-size:30px"></i></a>
<a href="mailto:aneesh.atri@gmail.com" style="text-decoration: none; color: black;"><i class="fa fa-envelope changeToBrown" aria-hidden="true" style="font-size: 30px;"></i></a>
</div>
</div>
</body>
</html>