-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 2.42 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Assicura una corretta visualizzazione su dispositivi mobili -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>History-On-This-Day | Interactive Web App | Bocaletto Luca</title>
<meta name="description" content="History-On-This-Day is a dynamic web application that lets users explore significant historical events for any given day. Discover important events, notable births, and cultural milestones using free open-data APIs, offering a daily glimpse into history. Developed by Bocaletto Luca.">
<meta name="keywords" content="history, events, notable births, cultural milestones, timeline, historical data, open-data API, interactive web app, learning, discovery, Bocaletto Luca">
<meta name="author" content="Bocaletto Luca">
<!-- Bootstrap CSS per uno styling responsive -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" />
<!-- CSS Personalizzato -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<!-- Intestazione dell'app -->
<h1>On This Day – History App</h1>
<!-- Sezione form per il filtro -->
<div class="card p-3 mb-4">
<div class="row g-3">
<!-- Input per la data. L'utente può scegliere la data specifica -->
<div class="col-md-4">
<label for="dateInput" class="form-label">Select Date:</label>
<input type="date" id="dateInput" class="form-control" />
</div>
<!-- Input per il filtro di parola chiave (opzionale) -->
<div class="col-md-4">
<label for="keywordInput" class="form-label">Keyword Filter (Optional):</label>
<input type="text" id="keywordInput" class="form-control" placeholder="e.g., revolution, battle" />
</div>
<!-- Bottone di ricerca -->
<div class="col-md-4 d-flex align-items-end">
<button id="fetchDataBtn" class="btn btn-primary w-100">Search</button>
</div>
</div>
</div>
<!-- Sezione per visualizzare i risultati -->
<div id="results"></div>
</div>
<!-- Footer fisso -->
<footer>
Bocaletto Luca
</footer>
<!-- Bootstrap Bundle JS (include Popper) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<!-- include main JS -->
<script src="main.js"></script>
</body>
</html>