-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (50 loc) · 1.51 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Remind Me!</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body oncontextmenu="return false">
<!-- partial:index.partial.html -->
<h1>Remind Me!</h1>
<p class="desc">I'll help you to make your schedule simply</p>
<div class="generator">
<section>
<label for="summary">Title</label>
<input id="summary" type="text" placeholder="This is the event title"/>
</section>
<section>
<label for="description">Description</label>
<textarea id="description" placeholder="This is the event details"></textarea>
</section>
<section>
<label for="startDate">Start Date</label>
<input id="startDate" type="date"/>
</section>
<section>
<label for="startTime">Start Time</label>
<input id="startTime" type="time"/>
</section>
<section>
<label for="endDate">End Date</label>
<input id="endDate" type="date"/>
</section>
<section>
<label for="endTime">End Time</label>
<input id="endTime" type="time"/>
<section>
<button id="create">Create file</button><a class="download hide" id="downloadLink" download="event.ics"> Download</a>
</section>
</div>
<!--=============== FOOTER ===============-->
<footer class="footer container">
<span class="footer__copy">
© Capstone Project. By Kelompok 6
</span>
</footer>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>