The site contains movies data.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>
|
|
|
|
Search Movies
|
|
|
|
</title>
|
|
|
|
<link rel="stylesheet" href="searchstyle.css">
|
|
|
|
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
|
|
|
|
<script src="movies.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="header">
|
|
|
|
<form>
|
|
|
|
<div class="form-box">
|
|
|
|
<input type="text" class="search-movies" placeholder="Movies">
|
|
|
|
<button class="search-btn" type="button" onclick="search(event)">Search</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<div id="slideContainer"></div>
|
|
|
|
</div>
|
|
|
|
<div id="output"></div>
|
|
|
|
</body>
|