-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (91 loc) · 4.27 KB
/
index.html
File metadata and controls
95 lines (91 loc) · 4.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;700;800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<link rel="icon" href="img/upeeksIcon.png" type="image/x-icon">
<title>UPeeks</title>
</head>
<body>
<!-- Header Sections -->
<header>
<div class="header-logo">
<a href="/index.html"><h1 class="upeeks-logo-text"> UPeeks</h1></a>
</div>
<!-- Nav Menu -->
<nav>
<ul class="navbar">
<li><a href="index.html">HOME</a></li>
<li><a href="src/gallery.html">GALLERY</a></li>
<li><a href="src/about.html">ABOUT US</a></li>
<li><a href="src/contact.html">CONTACT US</a></li>
</ul>
</nav>
</header>
<!-- Main Content -->
<main>
<div class="home">
<div class="slider-container">
<div class="slider-inner">
<div class="slide"> <img src="img/YJM_8569.JPG" alt="Slide 1"> </div>
<div class="slide"> <img src="img/YJM_8597.JPG" alt="Slide 2"> </div>
<div class="slide"> <img src="img/YJM_8670.JPG" alt="Slide 3"> </div>
<div class="slide"> <img src="img/YJM_8628.JPG" alt="Slide 4"> </div>
</div>
<div class="home-text">
<h1>Visual Stories, where tales speak.</h1>
<p>Showcases the beauty of UP Mindanao through galleries of images of UP Min's distinctive places. UPeeks highlights images that show the visual wonder of UP Mindanao.</p>
<p>Let's Traverse!</p>
<a href="src/gallery.html"><button class="gallery-button">Gallery</button></a>
</div>
<button class="slider-btn" id="prev-btn" onclick="prevSlide()">❮</button>
<button class="slider-btn" id="next-btn" onclick="nextSlide()">❯</button>
</div>
</div>
<!-- Student Stories -->
<div class="stories-container">
<h1>Student Experience</h1>
<div class="stories-inner">
<p>
"Entering UP Mindanao, you wouldn't know what to expect about the university's actual appearance. An overview would be a game-changer— aside from functioning as a guide, it boosts expectation on the beautiful sights UP Mindanao has to offer".
<br><br>
- <i>Lara Chryselle Felescoso</i> -
</p>
</div>
</div>
</main>
<!-- Footer Section -->
<footer>
<div class="footer-content">
<h3 class="upeeks-footer">UPeeks</h3>
<p>
All Rights Reserved 2020
University of the Philippines Mindanao <br>
Department of Mathematics, Physics and Computer Science
</p>
<ul class="socials">
<li><a href="https://www.facebook.com/profile.php?id=61554569280419"><i class= "fa-brands fa-facebook"></i></a></li>
<li><a href="https://www.instagram.com/_upeeks/"><i class= "fa-brands fa-instagram"></i></a> </li>
<li><a href="https://twitter.com/U_Peeks"><i class= "fa-brands fa-twitter"></i></a> </li>
</ul>
</div>
<div class="footer-bottom">
<p>Copyright © 2023 UPeeks</p>
</div>
</footer>
<script src="index.js"></script>
</body>
</html>