-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgallery.html
118 lines (108 loc) · 3.49 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="style/header-footer.css" rel="stylesheet">
<link href="style/colormode.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<style>
body {
padding: 0;
margin: 0;
}
.gallerypur {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.gallerypur img {
width: 400px;
height: 300px;
border: 2px solid #ff3d0036;
border-radius: 13px;
box-shadow: 4px 7px 7px 0px #00000042;
cursor: pointer;
margin: 10px;
transition: 400ms;
}
.gallerypur img:hover {
filter: grayscale(1);
transform: scale(1.03);
}
#icon{
width: 30px;
cursor: pointer;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
}
</style>
</head>
<body class="colormode">
<!-- NAVBAR-->
<header class="navbar">
<div class="container">
<div class="brand">
<h3 class="text-center">Pakpur Blog</h3>
</div>
<button class="navbar-toggler" id="navbar-toggler">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-menu" id="navbar-menu">
<nav class="nav-links">
<a class="nav-link active" href="index.html">Home</a>
<a class="nav-link active" href="contact.html">Contact</a>
<a class="nav-link active" href="#">Gallery</a>
</nav>
</div>
</div>
<img src="asset/UI ICON/moon.png" id="icon" alt="Moon Icon">
</header>
<!--gallery main-->
<div class="gallerypur" >
<img src="asset/ppur.jpeg">
<img src="asset/gallerypur/pur1.jpg">
<img src="asset/gallerypur/pur (2).jpg">
<img src="asset/gallerypur/pur (3).jpg">
<img src="asset/gallerypur/pur (4).jpg">
<img src="asset/gallerypur/pur (5).jpg">
<img src="asset/gallerypur/pur (6).jpg">
<img src="asset/gallerypur/pur (7).jpg">
<img src="asset/gallerypur/pur (8).jpg">
<img src="asset/gallerypur/pur (9).jpg">
</div>
<footer class="d-flex justify-content-around flex-wrap align-content-center shadow-lg bg-gradient p-3">
<div class="d-flex flex-column text-center text-secondary fw-bold">
<h4>Made By</h4>
<p>Imron</p>
<p>Syafiq</p>
<p>Rafi Salman</p>
</div>
<div class="d-flex flex-column text-center text-secondary fw-bold">
<h4>About Our Teams</h4>
<p>SMK ANTARTIKA 2 SIDOARJO</p>
<p>Indonesia</p>
<p>X RPL 2</p>
</div>
<div class="d-flex flex-column text-center text-secondary">
<h4>Technologies using</h4>
<p class="text-primary fs-5 fw-bold">Bootstrap</p>
<p class="text-dark">Copyright 2023 All Right Reserved</p>
</div>
</footer>
<script src="colormode.js">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous">
</script>
</html>