-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathedu.html
80 lines (70 loc) · 2.35 KB
/
edu.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
<!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/styles.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">HOME</a></li>
<li><a href="#frame2">Translate</a></li>
<li><a href="#frame3">Flashcards</a></li>
<li><a href="#frame4">Summary</a></li>
<li><a href="#frame5">Accent</a></li>
</ul>
</div>
<!-- Parallax Frame 1 -->
<section class="parallax" id="frame1">
<div class="content">
<h1>edu</h1>
<p>Some introductory text.</p>
</div>
</section>
<!-- Frame Bar (separating different frames) -->
<div class="frame-bar">Translation Section</div>
<!-- Parallax Frame 2 -->
<section class="parallax" id="frame2">
<div class="content">
<h1> TRANSLATION </h1>
<p>More information here.</p>
</div>
</section>
<!-- Frame Bar -->
<div class="frame-bar">Flashcards Section</div>
<!-- Parallax Frame 3 -->
<section class="parallax" id="frame3">
<div class="content">
<h1> GENERATE FLASHCARDS</h1>
<p>Details about our services.</p>
</div>
</section>
<!-- Frame Bar -->
<div class="frame-bar">Summary Section</div>
<!-- Parallax Frame 4 -->
<section class="parallax" id="frame4">
<div class="content">
<h1>CREATE SUMMARY</h1>
<p>Contact information or call to action.</p>
</div>
</section>
<!-- Parallax Frame 5 -->
<section class="parallax" id="frame5">
<div class="content">
<h1>ACCENT</h1>
<p>Contact information or call to action.</p>
</div>
</section>
<!-- Footer -->
<div class="footer">
<p>GitHub links of team mates: <a href="#">Link 1</a>, <a href="#">Link 2</a>, <a href="#">Link 3</a></p>
</div>
<script src="/static/js/script.js"></script>
</body>
</html>