-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmerchandise.html
More file actions
137 lines (135 loc) · 4.29 KB
/
merchandise.html
File metadata and controls
137 lines (135 loc) · 4.29 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
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
<!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="style/style.css" />
<link rel="icon" href="assets/LogoJDG.png" />
<!-- BOOTSTRAP LINK -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="topnav">
<a href="beranda.html"
><img
class="logo-jdg-navbar"
src="assets/logojdgputih.png"
alt="LogoJDG"
/></a>
<div class="textnav">
<a href="beranda.html">Beranda</a>
<a href="pertemuan.html">Pertemuan</a>
<a class="active" href="merchandise.html">Merchandise</a>
<a href="aboutus.html">Tentang Kami</a>
</div>
</div>
<div class="page-merchandise">
<div class="container">
<section class="merchandise-breadcrumbs pt-4">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="beranda.html">Beranda</a>
</li>
<li class="breadcrumb-item active" aria-current="page">
Merchandise
</li>
</ol>
</nav>
</section>
<section class="merchandise-greeting">
<div class="row">
<div class="col-12 text-center">
<h4>Dapatkan merhcandise Java Developer Group</h4>
</div>
</div>
</section>
<section class="carousel-merchandise pt-3">
<div class="row">
<div class="col-12">
<div
id="carouselExampleSlidesOnly"
class="carousel slide"
data-bs-ride="carousel"
>
<div class="carousel-inner">
<div class="carousel-item active">
<img
src="assets/merchandise.png"
class="d-block w-100"
alt="..."
/>
</div>
<div class="carousel-item">
<img
src="assets/logojdgori.png"
class="d-block w-100"
alt="..."
/>
</div>
<div class="carousel-item">
<img
src="assets/pdl-jdg.jpg"
class="d-block w-100"
alt="..."
/>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="merchandise-greeting-lainnya pt-3">
<div class="row">
<div class="col-12 text-center">
<h4>Merhcandise Java Developer Group Lainnya</h4>
</div>
</div>
</section>
<section class="images-merchandise pt-3 mb-5 pb-5">
<div class="row">
<div class="col-3">
<img
src="assets/merchandise-1.png"
class="rounded d-block w-100"
alt="..."
/>
</div>
<div class="col-3">
<img
src="assets/merchandise-2.png"
class="rounded d-block w-100"
alt="..."
/>
</div>
<div class="col-3">
<img
src="assets/merchandise-1.png"
class="rounded d-block w-100"
alt="..."
/>
</div>
<div class="col-3">
<img
src="assets/merchandise-2.png"
class="rounded d-block w-100"
alt="..."
/>
</div>
</div>
</section>
</div>
</div>
</body>
</html>