-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
122 lines (99 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Code Saga</title>
<!-- styles -->
<link rel="stylesheet" href="styles/home.css">
<link rel="stylesheet" href="styles/navbar.css">
<link rel="stylesheet" href="styles/global.css">
<link rel="stylesheet" href="styles/utils.css">
<!-- scripts -->
<script src="scripts/helpers.js" defer></script>
</head>
<body>
<!-- navbar -->
<header>
<nav>
<div class="brand">
<img src="assets/logo/TheCodeSaga_WithoutGlow.svg" alt="The Code Saga">
</div>
<div class="navLinks">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="pages/schedule.html">SCHEDULE</a></li>
<li><a href="pages/faq.html">FAQ</a></li>
<li><a href="pages/saga.html">SAGA</a></li>
<li><a href="pages/results.html">RESULTS</a></li>
</ul>
</div>
<div class="cta">
<a href="pages/registration.html">
<button>REGISTER</button>
</a>
</div>
<div class="menuIconContainer">
<div class=" menuOpenIconWrapper">
<img src="assets/icons/menu-outline.svg" alt="MenuIcon">
</div>
<div class="menuCloseIconWrapper" style="display: none;">
<img src="assets/icons/close-outline.svg" alt="CloseIcon">
</div>
</div>
</nav>
</header>
<div id="root">
<main>
<section>
<div class="heroContainer">
<div class="hero">
<div class="logo"><img src="assets/logo/TheCodeSaga.svg" alt=""></div>
<div class="info">
<div class="title">
<h1>The Code Saga</h1>
</div>
<div class="description">
<p>
A Diploma Level Competition Organized by ACTS and THE SUDOERS CLUB,
NDMVPS's Rajarshi Shahu Maharaj Polytechnic. Nashik. Computer Technology Department
</p>
</div>
</div>
</div>
<div class="eventInfo">
<div class="wrapper">
<div class="count">
<div class="message"><span>Hurry Up !!!</span></div>
<div class="liveCount"><span>Live Registration Count: 76/100</span></div>
</div>
<div class="prizes">
<div class="title"><span>Win Exiting Prizes</span></div>
<div class="amount">
<span>WINNER: Rs. 5000/-</span>
<span>Runner Up: Rs. 2000/-</span>
</div>
</div>
</div>
</div>
<div class="hero-cta-btn">
<div class="hero-cta-btn-wrapper">
<a href="pages/registration.html"><button>Register</button></a>
</div>
</div>
</div>
</section>
<section id="video">
<div class="videoContainer">
<div class="videoWrapper">
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/mLPKiKh1ld0?si=QMEaTgVhaOEx_ORb"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</div>
</div>
</section>
</main>
</div>
</body>
</html>