17 lines
442 B
HTML
17 lines
442 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Movie List</title>
|
|
<link rel="stylesheet" href="main.css">
|
|
</head>
|
|
<body>
|
|
<h1>Movie List</h1>
|
|
<button id="list">List Movies</button><br>
|
|
<input type="text" id="search_term" value="cuckoo">
|
|
<button id="search">Search</button>
|
|
<p id="message"></p>
|
|
|
|
<script src="movie.js"></script>
|
|
</body>
|
|
</html>
|