-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.Html
37 lines (34 loc) · 1.29 KB
/
Home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div >
<div class ="Intro-Container">
<p> <em> <strong> Birthday Reminder, </strong> </em> It's quick and easy to use <br>
1) Enter the name and the date of birth <br>
2) Click "Save input" <br>
3) You'll recieve a notification when the time is right! <br>
4) Click "Delete All" to clear the list <br>
</p>
</div>
</div>
<input type="text" class="input-btn-InputBox" id="name-el" placeholder="Name">
<input type="text" class="input-btn-InputBox" id="userInput-el" placeholder="Date of Birth ( 'DD/MM/YY' ==> 16/09/1995 )">
</div>
<hr>
<div id="box-1">
<button id="input-btn-save" class="glow-on-hover"> SAVE INPUT </button>
<button id="input-btn-delete" class="glow-on-hover"> DELETE ALL </button>
<hr>
</div>
<ul id = "ul-el"> </ul>
</div>
<script src="index.js"></script>
</body>
</html>