-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.23 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.23 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Find Love</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" type="text/css" href="javascript2.css">
<link rel="stylesheet" type="text/css" href="JavaScript.css">
<script src="file.js" defar></script>
</head>
<body>
<div class="header"><div id="header"><h1>Find Love</h1></div></div>
<div id="main">
<div class="row">
<label>Gender:</label>
<select id="gender">
<option value="A">All</option>
<option value="M">Male</option>
<option value="F">Female</option>
</select>
</div>
<div class="row">
<label>Hobbies:</label>
<input type="text" id="hobby">
</div>
<div class="row">
<button id="search-btn">Search</button>
</div>
<div id="results"></div>
<div class="noMatch">
<marquee behavior="alternate"><p id="noMatchFound"></p></marquee>
</div>
</div>
<footer>
<div class="div-footer">
<div class="copyright"><p>© <script>
let today = new Date()
let year = today.getFullYear();
document.write(year)
</script> Shamxeed Inc. All Rights Reserved.</p></div>
</div>
</footer>
</body>
</html>