-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
59 lines (53 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parallax Scrolling Example</title>
<link rel="stylesheet" href="static/css/style.css">
</head>
<body>
<!-- Navigation Bar -->
<div class="navbar">
<a href="edu.html" class="logo">
<img src="/static/images/logoo.png" alt="Website Logo">
</a>
<ul class="nav-links">
<li><a href="#frame1">Education</a></li>
<li><a href="#frame2">Games</a></li>
</ul>
</div>
<!-- Parallax Frame 1 -->
<section class="parallax" id="frame1">
<div class="content">
<h1 class="main-heading">UTKRISHT</h1>
<p class="tagline">Innovating Education and Games for a Brighter Future </p>
</div>
</section>
<!-- Frame Bar (separating different frames) -->
<div class="frame-bar"> <i>“True knowledge is that which liberates.”</i></div>
<!-- Parallax Frame 2 -->
<section class="parallax" id="frame2">
<div class="container-wrapper">
<!-- Education Container -->
<a href="edu.html" class="translucent-container">
<h2>Education</h2>
</a>
<!-- Games Container -->
<a href="games.html" class="translucent-container">
<h2>Games</h2>
</a>
</div>
</section>
<!-- Footer -->
<div class="footer">
<p>
<a href="https://github.com/kushagra-singhh">Kushagra Singh</a>
<a href="https://github.com/aapJoysakoi">Joysa Kaushik</a>
<a href="https://github.com/Nishita10">Nishita Singh</a>
<a href="https://github.com/Saty70">Satyam Kumar Prasad</a>
</p>
</div>
<script src="/static/js/script.js"></script>
</body>
</html>