-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (33 loc) · 1.21 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
33
34
35
<!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">
<title>SearchBar</title>
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<h1>Movieeggle</h1>
<div class="wrapper">
<div class="search-input">
<input type="text" placeholder="Type to search" name="search" id="searchbar">
<div class="autocom-box">
<li>How to code in HTML & CSS</li>
<li>How to code in Java</li>
<li>How to code in Javascript</li>
<li>How to become a web developer</li>
</div>
<div class="icon"><i class="fas fa-search"></i>
</div>
</div>
</div>
<div class="movies">
</div>
<script src="./js/suggestions.js"></script>
<script src="./js/script.js"></script>
</body>
</html>