-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgalery.html
More file actions
126 lines (116 loc) · 6.83 KB
/
Copy pathgalery.html
File metadata and controls
126 lines (116 loc) · 6.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>gallery</title>
<!-- BS link : -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Merriweather:ital@1&display=swap" rel="stylesheet">
</head>
<body>
<header class="container-fluid bg bg-light ">
<nav class="navbar navbar-expand-lg bg-body-tertiary sticky-top ">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html"><img src="./imeges/logo.png" alt="logo" width="100" height="60" /></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarTogglerDemo02"
aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item nav-item ">
<a class="nav-link nav_text btn btn-secondary" aria-current="page" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link nav_text btn btn-secondary" href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link nav_text btn btn-secondary " href="./galery.html">gallery</a>
</li>
<li class="nav-item">
<a class="nav-link nav_text btn btn-secondary " href="./FAQ.html">FAQ</a>
</li>
<li class="nav-item ">
<a class="nav-link btn btn-primary nav_text" href="./contact.html">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="container-fluid my-4">
<div class="container">
<div class="row row-cols-1 row-cols-lg-3 align-items-stretch g-4 py-5">
<div class="col">
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg gallery_card" style="background-image: url('./imeges/1\ -\ Made\ with\ Clipchamp.gif');">
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1">
<h3 class=" display-6 lh-1 fw-bold text-white-50">Home</h3>
</div>
</div>
</div>
<div class="col">
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg gallery_card" style="background-image: url('./imeges/2\ -\ Made\ with\ Clipchamp.gif');">
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1">
<h3 class=" display-6 lh-1 fw-bold text-white-50">About</h3>
</div>
</div>
</div>
<div class="col">
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg gallery_card" style="background-image: url('./imeges/3\ -\ Made\ with\ Clipchamp.gif');">
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1">
<h3 class=" display-6 lh-1 fw-bold text-white-50">FAQ</h3>
</div>
</div>
</div>
<div class="col">
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg gallery_card" style="background-image: url('./imeges/4\ -\ Made\ with\ Clipchamp.gif');">
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1">
<h3 class=" display-6 lh-1 fw-bold text-white-50">Art</h3>
</div>
</div>
</div>
<div class="col">
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg gallery_card" style="background-image: url('./imeges/6\ -\ Made\ with\ Clipchamp.gif');">
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1">
<h3 class=" display-6 lh-1 fw-bold text-white">Beautiful</h3>
</div>
</div>
</div>
<div class="col">
<div class="card card-cover overflow-hidden text-bg-dark rounded-4 shadow-lg gallery_card" style="background-image: url('./imeges/5\ -\ Made\ with\ Clipchamp.gif');">
<div class="d-flex flex-column h-100 p-5 text-white text-shadow-1 ">
<h3 class=" display-6 lh-1 fw-bold text-white-50">Fantacy</h3>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="container-fluid">
<div class="container d-flex flex-wrap justify-content-between align-items-center">
<div class="col-md-4 d-flex align-items-center">
<a href="/" class="mb-3 me-2 mb-md-0 text-body-secondary text-decoration-none lh-1">
<svg class="bi" width="30" height="24">
<use xlink:href="#bootstrap"></use>
</svg>
</a>
<span class="mb-3 mb-md-0 text-body-secondary">© israel benisti LLC</span>
</div>
<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li class="ms-3"><a class="text-body-secondary" href="#"><svg class="bi" width="24" height="24"><img
src="./imeges/icons8-whatsapp-24.png" alt=""></svg></a></li>
<li class="ms-3"><a class="text-body-secondary" href="#"><svg class="bi" width="24" height="24"><img
src="./imeges/icons8-instagram-24.png" alt=""></svg></a></li>
<li class="ms-3"><a class="text-body-secondary" href="#"><svg class="bi" width="24" height="24"><img
src="./imeges/icons8-twitter-24.png" alt="nun"></svg></a></li>
</ul>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
</body>
</html>