25 lines
856 B
HTML
25 lines
856 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>My Movie List</title>
|
|
<link rel="stylesheet" href="main.css">
|
|
</head>
|
|
<body>
|
|
<h1>My Favorite Movies</h1>
|
|
<ul>
|
|
<li id="barbie">Barbie</li>
|
|
<li id="op">Oppenheimer</li>
|
|
<li id="sw">Star Wars</li>
|
|
<li id="casa">Casablanca</li>
|
|
<li id="bp">Black Panther</li>
|
|
<li id="hot">Some Like It Hot</li>
|
|
<li id="lord">Lord of the Rings</li>
|
|
<li id="ww">Wonder Woman</li>
|
|
<li id="oz">Wizard of Oz</li>
|
|
<li id="taxi">Taxi Driver</li>
|
|
</ul>
|
|
<p>Drag and drop a movie to change the order</p>
|
|
<script src="movie_list.js"></script>
|
|
</body>
|
|
</html> |