-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHomePage.html
32 lines (29 loc) · 1.04 KB
/
HomePage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Homepage</title>
<link rel="stylesheet" href="hoos-available/src/styles.css">
</head>
<body>
<div class="top-container">
<div class="uva-logo">
<img src="hoos-available/src/images/vsabre.png" width="15%">
</div>
<h1 class="title">Hoos Available</h1>
<input type="text" placeholder="Search for a professor or class">
<button type="submit"><img src="hoos-available/src/images/search-icon.png" width="14px"></button>
</div>
<div class="boxes-container">
<div class="box-left">
<img class="box-button-icon" src="hoos-available/src/images/Iconsmind-Outline-Professor.ico"/>
<a class="box-text" href="FindProfessor.html">Find Professors</a>
</div>
<div class="box-right">
<img class="box-button-icon" src="hoos-available/src/images/book-outline.png"/>
<a class="box-text" href="BrowseCourses.html">Browse Courses</a>
</div>
</div>
</div>
</body>
</html>