-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_page.php
More file actions
59 lines (49 loc) · 2.2 KB
/
main_page.php
File metadata and controls
59 lines (49 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main Page</title>
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="css/style.css">
</head>
<body style="padding-left: 0;">
<div class="container">
<header class="header">
<div class="flex">
<a href="home.php" class="logo">Exam Overflow</a>
<form action="search.php" method="post" class="search-form">
<input type="text" name="search_box" required placeholder="search courses..." maxlength="100">
<button type="submit" class="fas fa-search"></button>
</form>
<div class="icons">
<div id="search-btn" class="fas fa-search"></div>
<div id="toggle-btn" class="fas fa-sun"></div>
</div>
</div>
</header>
<div class="content">
<div class="big-text">Exam Overflow</div>
<div class="paragraph">
<p>Exam Overflow provide valuable resources to enhance their exam preparation. With Exam Overflow,
students can access
a vast collection of previous exams, share study materials, and find valuable resources to excel in
their academic journey. Our platform aims to empower students by fostering a collaborative learning
environment and facilitating the exchange of knowledge and insights.</p>
</div>
<div class="buttons-container">
<a href="login.php" class="button">Login</a>
<a href="register.php" class="button">Register</a>
</div>
</div>
</div>
<footer class="footer">
© copyright @ 2024 by <span>Solution Team</span> | all rights reserved!
</footer>
<!-- custom js file link -->
<script src="js/script.js"></script>
</body>
</html>