23 lines
589 B
HTML
23 lines
589 B
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>La Mia Watchlist</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>🎬 Film da Vedere</h1>
|
|
|
|
<div class="input-group">
|
|
<input type="text" id="titolo" placeholder="Titolo film">
|
|
<input type="number" id="anno" placeholder="Anno" style="max-width: 80px;">
|
|
<button id="btn-add">Aggiungi</button>
|
|
</div>
|
|
|
|
<ul id="lista-film">
|
|
<!-- I film verranno aggiunti qui dinamicamente -->
|
|
</ul>
|
|
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |