-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (86 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Omnidoxy - Explore Knowledge</title>
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/homepage.css" />
<link
href="https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Caveat&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="border-container">
<!-- Logo in the corner -->
<img
src="assets/icons/logo-omnidoxy.png"
alt="Omnidoxy Logo"
class="logo"
/>
<!-- Border Design -->
<img
src="assets/icons/border-upr.png"
alt="Upper Border"
class="corner-img"
/>
<div class="border border-top">
<div class="diamond" style="--diamond-size: 10px"></div>
<div class="diamond" style="--diamond-size: 10px"></div>
</div>
<div class="border border-left">
<div class="diamond" style="--diamond-size: 13px"></div>
<div class="diamond" style="--diamond-size: 10px"></div>
</div>
<!-- Content in the middle -->
<div class="content">
<!-- Big Logo -->
<img
src="assets/icons/logo-omnidoxy.png"
alt="Omnidoxy Logo"
class="logo-large"
/>
<!-- Description -->
<p class="description">
"Exploring the vast sea of knowledge is a never-ending journey, <br />
where every question leads to another discovery." <br />
<span class="author">- Abel Water</span>
</p>
<!-- Scroll Button -->
<div class="main__action">
<a id="scroll-arrow1" class="main__scroll" href="#">
<img src="assets/icons/scroll.png" alt="Scroll Down" width="30" />
</a>
</div>
</div>
<!-- Bottom Border with About Us -->
<div class="bottom-section">
<div class="border border-bottom">
<div class="diamond" style="--diamond-size: 10px"></div>
<div class="diamond" style="--diamond-size: 10px"></div>
</div>
<button
class="about-us-btn"
onclick="window.location.href='views/aboutus.html'"
>
<img
src="assets/icons/info-icon.png"
alt="Info Icon"
class="info-icon"
/>
About Us
</button>
</div>
</div>
<!-- Placeholder for Section 2 -->
<div id="section-2-container"></div>
<script src="js/main.js"></script>
<script src="../js/search.js"></script>
</body>
</html>