-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Find a Tutor</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>Find a Tutor</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Login</a></li>
<li><a href="#">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="container">
<h2>Search for a Tutor</h2>
<form id="searchForm">
<input type="text" id="subjectInput" placeholder="Enter subject...">
<input type="text" id="locationInput" placeholder="Enter University...">
<button type="submit">Search</button>
</form>
<div id="resultsContainer">
<!-- Search results will be displayed here -->
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<p>© 2024 Find a Tutor. All rights reserved.</p>
<div class="social-links">
<a href="https://www.facebook.com"><img src="facebook_logo.png" alt="Facebook"></a>
<a href="https://twitter.com"><img src="twitter_logo.png" alt="Twitter"></a>
<a href="https://www.instagram.com"><img src="instagram_logo.png" alt="Instagram"></a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>