-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (76 loc) · 3.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<title>Archipelago Gallery</title>
</head>
<body>
<header>
<!-- navigation -->
<section class="navigation">
<div class="container">
<div class="box-navigation">
<div class="box">
<h1>Archipelago</h1>
</div>
<div class="box">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index2.html">Ticket & Visit</a></li>
<li><a href="#">Art & Stories</a></li>
<li><a href="#">About</a></li>
</ul>
</div>
</div>
</div>
</section>
<!-- navigation -->
<!-- Content -->
<section class="content">
<div class="container">
<div class="box-content">
<h1>Discover the Artwork of Indonesian Artists</h1>
<p>Welcome to Inside Archipelago Gallery!</p>
</div>
<div class="container-teaser">
<a href="#">
<div class="teaser-image">
<img src="img/High-end runway.jpg" class="img-content"
style="background-position: 50% 50%;" />
</div>
<div class="teaser-tittle">
<h2>High-end runway</h2>
<p>Naufal Abshar</p>
</div>
</a>
</div>
<div class="container-teaser2">
<a href="#">
<div class="teaser-image">
<img src="img/Little Ice Cream.jpeg" class="img-content"
style="background-position: 50% 50%;" />
</div>
<div class="teaser-tittle">
<h2>Little Ice Cream</h2>
<p>Siam Candra Artista</p>
</a>
</div>
</div>
</div>
</section>
<!-- Content -->
</header>
</body>
<!-- <img src="img/High-end runway.jpg" class="img-content"/>
<div class="home-content">
<a href="#">
<h2>High-end runway</h2>
</a> -->
</html>