-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
81 lines (81 loc) · 2.83 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
<!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">
<title>threepointonefour</title>
<link rel="icon" type="image/png" href="images\314.ico"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header -->
<section class="header" id="header">
<a href="index.html" class="logo"> threepointonefour </a>
<nav class="navbar">
<div id="close-navbar" class="fas fa-times"></div>
<a href="index.html">home</a>
<a href="about.html">about us</a>
<div class="button-container">
<a href="join.html">
<button class="clr-1">
<span> Join Us </span><i></i>
</button>
</a>
</div>
<!-- <a href="gallery.html">Gallery</a>
<a href="#"> Donate </a> -->
</nav>
<div id="menu-btn" class="fas fa-bars"></div>
</section>
<!-- header -->
<!-- Gallery -->
<section class="services" id="services">
<h1 class="heading">Gallery</h1>
<div class="box-container">
<div class="box">
<img src="images/home1.png" alt="">
</div>
<div class="box">
<img src="images/home2.png" alt="">
</div>
<div class="box">
<img src="images/home1.png" alt="">
</div>
<div class="box">
<img src="images/home2.png" alt="">
</div>
</div>
</section>
<!-- Gallery end -->
<!-- footer -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3> Get In Touch </h3>
<div class="share">
<a href="#" class="fab fa-facebook-f"></a>
<a href="#" class="fab fa-twitter"></a>
<a href="#" class="fab fa-instagram"></a>
<a href="#" class="fab fa-linkedin"></a>
</div>
</div>
<div class="box">
<h3>contact us</h3>
<p>+91 9311034442</p>
<a href="mailto:[email protected]" class="link">[email protected]</a>
</div>
<div class="box">
<h3>location</h3>
<p>CLUB<br>
MANIPAL UNIVERSITY JAIPUR, RJ <br>
INDIA</p>
</div>
</div>
<div class="credit"> © 2024 <span>threepointonefour</span></div>
</section>
<!-- footer end-->
<script src="js/script.js"></script>
</body>
</html>