-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.1 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
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<title>Ones Cut - The one stop movie destination</title>
</head>
<body>
<div class="wrapper">
<div class="sidebar">
<ul>
<li><a href="/">Home</a></li>
<li><a href="#">All Teams</a></li>
<li><a href="#">Core</a></li>
<li><a href="#">Developers</a></li>
<li><a href="#">Designers</a></li>
<li><a href="#">Mentors</a></li>
<button class="button"><span>+ ADD</span></button>
</ul>
</ul>
</div>
<div class="main_content">
<div class="search-block">
<h1>Ones Cut</h1>
<form id="search-form">
<input type="text" id="query" placeholder="Search movies..." />
<button class="btn" type="submit">Search</button>
</form>
</div>
<div class="row" id="root"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>