-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (42 loc) · 1.21 KB
/
index.html
File metadata and controls
53 lines (42 loc) · 1.21 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header id="masthead">
<div class="container">
<a href="index.html" id="logo">Siddhant Sehgal</a>
<nav>
<h4><a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a></h4>
</nav>
</div>
</header>
<div id="main-container" class="container">
<section class="main-section">
<h1>About Me</h1>
<img class="auth-image" src="assets/images/nyc.jpg" width="200" alt="NYC">
<p class="desc-para"> Will write here something soon!</p>
</section>
<section class="sidebar">
<div id="connect">
<h2>Connect with me</h2>
<img class="social" src="assets/images/github.png" alt="github"
width="64" />
<img class="social" src="assets/images/linkedin.png" alt="linkedin"
width="64">
<img class="social" src="assets/images/stackoverflow.png" alt="stack overflow" width="64">
</div>
</section>
</div>
<footer>
<div class="container">
© Copyright 2016 Siddhant Sehgal
</div>
</footer>
</body>
</html>