-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Age Calculator</title>
<link rel="stylesheet" href="./assets/stylesheets/style.css">
<link rel="stylesheet" href="./assets/stylesheets/reset.css">
</head>
<body class="background">
<div class="parent" >
<div class="pdiv" id="firstDiv">
<div class="agecal">
<h2>Welcome to</h2>
<h1 class="agecal">Age Calculator</h1>
</div>
<div class="button">
<button class="inbutton" type="button" id="startButton"> Start</button>
</div>
</div>
<div class="pdiv hidden" id="secondDiv">
<h3 class="agecal">Age Calculator</h3>
<form>
<div class="input">
<input type="text" class="block" name="" id="yourName" placeholder="Enter Your Name Here" required/>
</div>
<div class="input">
<input type="text" class="block" name="" id="yourAge" placeholder="Enter Your Age Here" required/>
</div>
</form>
<div class="button">
<button class="inbutton" type="submit" id="submitButton">Calculate</button>
</div>
</div>
<div id="lastMessage" class="hidden">
<p class="disName"> </p>
<p class="disAge"></p>
<p class="disDays"></p>
<div class="button">
<button class="nbutton" type="reset" id="resetButton">Reset</button>
</div>
</div>
</div>
<script src="./assets/javascript/app.js"></script>
</body>
</html>