-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexplore.html
88 lines (72 loc) · 2.03 KB
/
explore.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
<!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 rel="stylesheet" href="explore.css" />
</head>
<body>
<div class="logo">
<a href="index.html" style="text-decoration: none; color: inherit;">SQUAD-56<span
class="reg">®</span></a>
</div>
<a href="index.html">
<div class="logo-img"></div>
</a>
<div class="container">
<div class="mentor-heading">
<h1>EXPLORE</h1>
</div>
<div class="mentors">
<div class="mentor technical">
<div class="picture">
<img src="./ASSETS/memberlogo.png" alt="">
</div>
<div class="name">
<h2 id="first-name">OUR</h2>
<h2 id="last-name">MEMBERS</h2>
</div>
<div class="post">
<h5>SQUAD-56</h5>
</div>
</div>
<div class="mentor program">
<div class="picture">
<img src="./ASSETS/projectlogo.png" alt="">
</div>
<div class="name">
<h2 id="first-name">OUR</h2>
<h2 id="last-name">PROJECTS</h2>
<!-- <p class="about">Embark on a Journey Through Our Endeavors</p> -->
</div>
<div class="post">
<h5>SQUAD-56</h5>
</div>
</div>
<div class="mentor program">
<div class="picture">
<img src="./ASSETS/Image Gallery.png">
</div>
<div class="name">
<h2 id="first-name">SQUAD</h2>
<h2 id="last-name">MEMORIES</h2>
<!-- <p class="about">Embark on a Journey Through Our Endeavors</p> -->
</div>
<div class="post">
<h5>SQUAD-56</h5>
</div>
COMING SOON...!!!
</div>
</div>
</div>
</body>
</html>
<script>
document.querySelector(".technical").addEventListener("click", () => {
window.location.href = "about.html"
})
document.querySelector(".program").addEventListener("click", () => {
window.location.href = "projects.html"
})
</script>