-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (26 loc) · 842 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Search Box</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="container">
<form action="">
<div class="form-item">
<label>
<input type="text" class="form-input search" data-search-box="#search-result" placeholder="Word">
</label>
<div class="search-result" id="search-result">
<span>CSS Animations - W3Schools</span>
<span>JavaScript HTML DOM Animation - W3Schools</span>
<span>CSS animation Property - W3Schools</span>
<span>CSS Animation Libraries</span>
</div>
</div>
</form>
</div>
<script src="app.js" type="application/javascript"></script>
</body>
</html>