-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (69 loc) · 2.36 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Photographs</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Monoton|Raleway|Poiret One">
</head>
<body>
<div class="header">
<p>Photographs</p>
</div>
<div id="gallery-container">
<div id="gallery">
<div class="info post">
<h1>Apoorv Choubey</h1>
<p>Hi, I'm an engineering graduate from DTU, India. I'm interested in software development - particularly web development and data analysis. I also like to learn more about physics, math and astronomy.<br><br>
I love doing photography and here is a gallery of few of my favourite clicks.<br>You may check out my portfolio <a href="https://apooravc.github.io/">here</a> and github <a href="https://github.com/apooravc">here</a>.</p>
</div>
<div class="post">
<div class="box-1">
<img class="photo" src="images/pic-1.jpg" alt="photo-1">
</div>
<p>February '17</p>
</div>
<div class="post">
<div class="box-2">
<img class="photo" src="images/pic-2.jpg" alt="photo-2">
</div>
<p>August '17</p>
</div>
<div class="post">
<div class="box-3">
<img class="photo" src="images/pic-3.jpg" alt="photo-3">
</div>
<p>November '16</p>
</div>
<div class="post">
<div class="box-4">
<img class="photo" src="images/pic-4.jpg" alt="photo-4">
</div>
<p>September '16</p>
</div>
<div class="post">
<div class="box-5">
<img class="photo" src="images/pic-5.jpg" alt="photo-5">
</div>
<p>January '17</p>
</div>
<div class="post">
<div class="box-6">
<img class="photo" src="images/pic-6.jpg" alt="photo-6">
</div>
<p>February '17</p>
</div>
<div class="post">
<div class="box-7">
<img class="photo" src="images/pic-7.jpg" alt="photo-7">
</div>
<p>January '17</p>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="js/jquery.mousewheel.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>