-
Notifications
You must be signed in to change notification settings - Fork 2
/
search.html
36 lines (36 loc) · 1.04 KB
/
search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Website - Search</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header and Navigation -->
<header>
<h1>My Website</h1>
<!-- Navigation Menu -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="search.html" class="active">Search</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</nav>
</header>
<!-- Main Content -->
<main>
<h2>Search</h2>
<input type="text" id="searchInput" placeholder="Type to search...">
<button id="searchButton">Search</button>
<div id="searchResults"></div>
</main>
<!-- Footer -->
<footer>
<p>© 2023 My Website. All rights reserved.</p>
</footer>
<!-- JavaScript -->
<script src="script.js"></script>
</body>
</html>