-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchPage.html
More file actions
25 lines (25 loc) · 852 Bytes
/
SearchPage.html
File metadata and controls
25 lines (25 loc) · 852 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search</title>
<link rel="stylesheet" href="SearchPage.css">
</head>
<body>
<div class="search-page fade-in">
<h1>Search Professor Name</h1>
<div class="search-bar">
<form action="#">
<input type="text" placeholder="Type Name" name="search">
<button class="search-button">
<img src="https://cdn-icons-png.flaticon.com/512/64/64673.png" alt="Search">
</button>
</form>
</div>
<div class="searchAttribution">
<a href="https://www.flaticon.com/free-icons/search" title="search icons">Search icons created by Maxim Basinski Premium - Flaticon</a>
</div>
</div>
</body>
</html>