-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 746 Bytes
/
Copy pathindex.html
File metadata and controls
36 lines (34 loc) · 746 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
36
<!DOCTYPE html>
<html>
<head>
<title></title>
<link href="bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="head">
<h1>Search movie by Title</h1>
</div>
<div class="body-Section">
<form>
<input type="text" name="searchText" class="textClass">
<input type="button" name="searchButton" value="Search" class="abc">
</form>
</div>
<div class="table-Section">
<table id="myTable" align="center">
<tr>
<td>Title</td>
<td>Year</td>
<td>imdbId</td>
<td>Type</td>
<td>Poster</td>
</tr>
</table>
</div>
<script>
window.jQuery || document.write('<script src="jquery-1.8.2.min.js"><\/script>')
</script>
<script src="script.js"></script>
</body>
</html>