-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (29 loc) · 734 Bytes
/
index.html
File metadata and controls
35 lines (29 loc) · 734 Bytes
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>
<head>
<title>Movies Site</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="topnav">
<a class="active" href="#">Movies Site</a>
<div class="search-container">
<form role="search" id="form">
<input type="search" id="query" name="q" placeholder="Search..">
</form>
</div>
</div>
<div style="padding-left:16px">
<section id="section">
<!-- <div class="row">
<div class="column">
<div class="card">
<center><img src="#" id="image" class="thumbnail"></center>
<h3 id="title">Movie Title</h3>
</div>
</div>
</div> -->
</section>
</body>
<script src="script.js"></script>
</html>