-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
151 lines (139 loc) · 4.73 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Onepage website photo gallery by Tisna Rudi">
<title>Onepage website photo gallery</title>
<link rel="preload" as="image" href="images/home-header.jpg">
<link rel="stylesheet" href="css/index.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header id="top">
<h1>Tisna Rudi</h1>
</header>
<nav class="sticky" role="navigation">
<ul>
<li class="home active"><a onclick="scrollSmoothTo('home')">Home</a></li>
<li class="about"><a onclick="scrollSmoothTo('about')">About</a></li>
<li class="gallery"><a onclick="scrollSmoothTo('gallery')">Gallery</a></li>
<li class="contact"><a onclick="scrollSmoothTo('contact')">Contact</a></li>
</ul>
</nav>
<main>
<section id="home">
<div class="caption">
<span class="border">Photo Gallery</span>
</div>
</section>
<section id="about">
<h1>About</h1>
<div class="flex-about">
<img src="images/profil.jpg" class="profile" alt="Tisna Rudi">
<h3>Hi, i'am Tisna Rudi</h3>
<p>Web Developer | Photographer</p>
<p>
<a href="https://twitter.com/trisnya11"><img src="images/Twitter.png" class="social-media" alt="Twitter icon"></a>
<a href="https://github.com/tisnarudi"><img src="images/Github.png" class="social-media" alt="GitHub icon"></a>
<a href="https://bigloveadagio.wordpress.com/"><img src="images/Wordpress.png" class="social-media" alt="Wordpress logo"></a>
</p>
<p>Onepage website with a simple photo gallery.</p>
</div>
</section>
<section id="gallery">
<h1>Photo Gallery</h1>
<p>Photograper Tisna Rudi</p>
<div class="flex-container">
<div class="third-column">
<figure>
<a target="_blank" href="images/konstruksi-gedung.jpg">
<img src="images/konstruksi-gedung.jpg" alt="Sunset">
</a>
<figcaption>Sunset</figcaption>
</figure>
</div>
<div class="third-column">
<figure>
<a target="_blank" href="images/crescent.jpg">
<img src="images/crescent.jpg" alt="Crescent moon">
</a>
<figcaption>Crescent moon</figcaption>
</figure>
</div>
<div class="third-column">
<figure>
<a target="_blank" href="images/balon-gas.jpg">
<img src="images/balon-gas.jpg" alt="Hot air ballon">
</a>
<figcaption>Hot air ballon</figcaption>
</figure>
</div>
</div>
<div class="flex-container">
<div class="third-column">
<figure>
<a target="_blank" href="images/blood-moon.jpg">
<img src="images/blood-moon.jpg" alt="Meteor shower">
</a>
<figcaption>Meteor shower</figcaption>
</figure>
</div>
<div class="third-column">
<figure>
<a target="_blank" href="images/terjun-payung.jpg">
<img src="images/terjun-payung.jpg" alt="Parachute">
</a>
<figcaption>Parachute</figcaption>
</figure>
</div>
<div class="third-column">
<figure>
<a target="_blank" href="images/menara.jpg">
<img src="images/menara.jpg" alt="Mesjid">
</a>
<figcaption>Mosque tower</figcaption>
</figure>
</div>
</div>
<div class="flex-container">
<div class="third-column">
<figure>
<a target="_blank" href="images/koreografi-kembang-api.jpg">
<img src="images/koreografi-kembang-api.jpg" alt="Fireworks choreography">
</a>
<figcaption>Fireworks choreography</figcaption>
</figure>
</div>
<div class="third-column">
<figure>
<a target="_blank" href="images/floating-market-lembang.jpg">
<img src="images/floating-market-lembang.jpg" alt="Floating market Lembang">
</a>
<figcaption>Lembang</figcaption>
</figure>
</div>
<div class="third-column">
<figure>
<a target="_blank" href="images/sepeda.jpg">
<img src="images/sepeda.jpg" alt="Colorful bicycles">
</a>
<figcaption>Colorful bicycles</figcaption>
</figure>
</div>
</div>
</section>
<section id="contact" class="bottom-box">
<h1>Contact</h1>
<p>Bandung, West Java. Indonesia</p>
<p><a href="mailto:bandunglokalbisnis@gmail.com">Send email</a></p>
<div id="bottom">
<a onclick="scrollSmoothTo('top')" title="Scroll to top"><mark><i class="up"></i></mark></a>
</div>
</section>
</main>
<footer>
2023 Tisna Rudi. Code are Creative Commons. Photos are property of their respective owners.
</footer>
<script src="js/index.js"></script>
</body></html>