-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.16 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="event-creater">
<h1 id="Main-heading">Events Countdown</h1>
<form>
<input type="text" name="event-title" id="title" placeholder="Event Name">
<select name="Event-type" id="event-type">
<option value="">Select a Category</option>
<option value="Anniversary">Anniversary</option>
<option value="Birthday">Birthday</option>
<option value="Reminder">Reminder</option>
<option value="Meeting">Meetings</option>
</select>
<input class="time" type="datetime-local" id="timer">
<button id="addEvent" type="submit">
Add Event
</button>
</form>
</div>
<div id="event-container"></div>
</div>
<script src="script.js"></script>
</body>
</html>