-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
183 lines (166 loc) · 9.08 KB
/
index.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!--Custom CSS-->
<link href="style.css" rel="stylesheet" type="text/css"/>
<title>zephyr website</title>
</head>
<body>
<!--Nav Bar Start-->
<header>
<nav class="navbar navbar-expand-lg bg-dark navbar-dark">
<div class="container">
<a class="navbar-brand" href="#"><img src="tunsyed.jpg" width="60px" alt=""></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="academic.html">Academics</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="sports.html">Sports</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="specialevent.html">Special Event</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="photos.html">Photos</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Contact Us </a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!--Nav Bar End-->
<!--carousel start-->
<section class="hero" id="hero">
<div id="carouselExampleControls" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<div class="carousel-background">
<img src="z4.jpeg">
<div class="carousel-container">
<div class="carousel-content-container">
<h2>This Is ZEPHYR</h2>
<p> ZEPHYR COMMUNITY HAVE 147 STUDENTS THAT PLAYS THEIR OWN ROLE BASED ON THEIR TALENT AND SPECIALITY TO MAKE ZEPHYR HONOURABLE </p>
<div class="buttons">
<a href="" class="button1">More Info</a>
<a href="" class="button1">Contact Us</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background">
<img src="z2.jpeg">
<div class="carousel-container">
<div class="carousel-content-container">
<h2>Welcome to ZEPHYR</h2>
<p>EVERY BATCH IN SMS TUN SYED SHEH SHAHABUDIN HAVE A NAME AND THEIR OWN BATCH NUMBER AS THEIR IDENTITY
AS A STUDENT WHO BORN IN YEAR 2007, OUR BATCH NUMBER ARE '2024' AND THAT'S WHERE 'ZEPHYR' CAME FROM. WE NAMED IT AS ZEPHYR </p>
<div class="buttons">
<a href="" class="button1">More Info</a>
<a href="" class="button1">Contact Us</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-background">
<img src="st4.jpg">
<div class="carousel-container">
<div class="carousel-content-container">
<h2>PROM 2024</h2>
<p class="clock">
<span class="clock-block">
<span class="clock-val" id = "days"></span>
<span class="clock-unit">days</span>
</span>
<span class="clock-block">
<span class="clock-val" id = "hours"></span>
<span class="clock-unit">hours</span>
</span>
<span class="clock-block">
<span class="clock-val" id = "minutes"></span>
<span class="clock-unit">minutes</span>
</span>
<span class="clock-block">
<span class="clock-val" id = "seconds"></span>
<span class="clock-unit">seconds</span>
</span>
</p>
<script>
// Set the date we're counting down to
// Change this once you know the date of your prom hehe
var countDownDate = new Date("Dec 31, 2023 20:00:00").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Display the result in the element with id="demo"
document.getElementById("days").innerHTML = days;
document.getElementById("hours").innerHTML = hours;
document.getElementById("minutes").innerHTML = minutes;
document.getElementById("seconds").innerHTML = seconds;
// document.getElementById("days").innerHTML = days + "d " + hours + "h "
// + minutes + "m " + seconds + "s ";
// If the count down is finished, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("flipdown").innerHTML = "EXPIRED";
}
}, 1000);
</script>
</div>
</div>
</div>
</div>
</div>
</button>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleControls"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleControls"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</section>
<!--carousel end-->
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>