-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.19 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
<!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">
<link rel="shortcut icon" href="images/icon/favicon.ico" type="image/x-icon">
<title>Lovers App</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header class="header">Find your love from the Lovers App</header>
<div class="wrap">
<div class="search__wrap" >
<form>
<input id="hobby" type="text" placeholder="Hobbies">
<select name="gender" id="gender">
<option value="" disabled selected>Gender</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="All">All</option>
</select>
<button class="submit">Search 🔎</button>
</form>
</div>
<div class="results__wrap">
<!-- results from the backend -->
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>