forked from angelukpong/movies-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Umoh Ukpong Okon">
<meta name="description" content="My first movies app. Coding along with Freecodecamp">
<title>My Movies App</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="topnav">
<a href="#" class="active">Movies-App</a>
<div class="search-container">
<form action="" role="search" id="form">
<input type="search" name="" id="query" placeholder="Search..." />
</form>
</div>
</div>
<div class="padding-left"></div>
<section id="section">
<!-- <div class="row">
<div class="column">
<div class="card">
<center>
<img src="wakanda.jpeg" alt="" class="thumbnail" />
</center>
<h3>Movie Title</h3>
</div>
</div>
</div> -->
</section>
<script src="script.js"></script>
</body>
</html>