-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
86 lines (86 loc) · 3.47 KB
/
gallery.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Story 3</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=DM+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="static/style.css">
<script src="https://kit.fontawesome.com/c883358289.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="nav">
<div class="container">
<ul>
<li><a href="index.html#cover">story</a></li>
<li><a href="index.html#about">about</a></li>
<li><a href="index.html#resume">resume</a></li>
<li><a href="index.html#portfolio">portfolio</a></li>
<li><a href="gallery.html">gallery</a></li>
</ul>
</div>
</div>
</div>
<div id="cover2">
<div class="container">
<div class="center">
<h1>aquí,<br>imágenes</h1>
<div class="sosmed">
<a href="http://instagram.com/natsyz" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="http://twitter.com/napnath" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/natasya-zahra-261756199/" target="_blank"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
<div id="gallery">
<div class="container">
<div class="boxes center">
<div class="box">
<img src="static/photo01.png" alt="">
</div>
<div class="box">
<h1>01</h1><br>
<p class="hlight">Junior High is probably the best moment that i’ve ever had.</p>
<br>
<p>Here, me with the very lovely person i’ve ever know. My bestfriend, and my crush (still).</p>
</div>
</div>
<div class="boxes">
<div class="box">
<img src="static/photo02.png" alt="">
</div>
<div class="box">
<h1>02</h1><br>
<p class="hlight">Shot inside public mini bus (angkot) on my way home from highschool.</p>
<br>
<p>Stress.</p>
</div>
</div>
<div class="boxes">
<div class="box">
<img src="static/photo03.png" alt="">
</div>
<div class="box last">
<h1>03</h1><br>
<p class="hlight">An event, a good one. The trees was nice.</p>
<br>
<p>Hopefully i could go here really soon.</p>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container">
<button type="button" onclick="location.href='#gallery'" class="btn btn-dark btn-sm" href="gallery.html#gallery">
up
</button>
<br>
<p>made with ❤ by @natsyz</p>
<p>© 2020</p>
</div>
</div>
</body>
</html>