-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Movie Sites</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"><!--The role attribute does not affect the appearance or behavior of an element, but it provides additional information to assistive technologies like screen readers.-->
<input type="search" id="query" name="q" placeholder="Search...">
</form>
</div><!--Div for search container closed-->
</div><!--Div for navigation bar where we can search the movies ended here-->
<section id="section">
<!-- <div class="row"><!--this is the next container that will contain movie section -->
<!--<div class="column"><!-- this div is for the movie section-->
<!--<div class="card"><!--this div is for the movie card-->
<!--<center><img src="/Images/img1.jpg" class="thumbnail"></center>
<h3>movie title</h3> -->
</div>
</div>
</div>
</section>
</body>
<script src="script.js"></script>
</html>