rinomina esercizi js
This commit is contained in:
25
javascript/10_localStorage/watchlist/index.html
Normal file
25
javascript/10_localStorage/watchlist/index.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="it">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>La Mia Watchlist</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<a href="../index.html" style="position: absolute; top: 20px; left: 20px; text-decoration: none; color: #555; font-weight: bold;">← Dashboard</a>
|
||||
|
||||
<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>
|
||||
Reference in New Issue
Block a user