-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.37 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stamp Collecting Database</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="app">
<h1>Historical Stamp Database</h1>
<div id="content">
<!-- Stamp collection list -->
<div id="stampSection">
<h2>Browse Unique Stamps</h2>
<div id="stampCollection">
<!-- Stamps loaded here -->
</div>
</div>
<!-- Add stamp Section -->
<div id="addStampSection">
<h2>Add a Historical Stamp</h2>
<form id="addStampForm">
<input type="text" id="stampName" placeholder="Stamp Name" required>
<textarea id="stampDescription" placeholder="Description" rows="3" required></textarea>
<input type="number" id="stampYear" placeholder="Year (e.g., 1847)" required>
<input type="text" id="stampImageUrl" placeholder="Image URL (optional)">
<button type="submit">Add Stamp</button>
</form>
<div id="confirmationMessage"></div>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>