forked from DPrinceKumar/HacktoberFest2020-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AgeInDays.html
57 lines (52 loc) · 1.18 KB
/
AgeInDays.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
55
56
57
<html>
<head>
<meta charset="UTF-8">
<title>
Js on Steroids
</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"/>
<style>
.container-1{
border: 5px solid black;
border: 2px solid black;
text-align: center;
width: 75%;
margin: 0px auto;
margin-top: 10px;
}
.flex-container-1{
border: 5px solid black;
border: 2px solid black;
display: flex;
padding: 10px;
justify-content: space-evenly;
flex-wrap: wrap;
}
.flex-container-1 div{
padding: 10px;
border: 5px solid black;
padding: 15px;
border: 1px solid black;
display: flex;
align-items: center;
}
</style>
</head>
<body>
<div class="container-1">
<h2>Challenge 1: Age in Days</h2>
<div class="flex-container-1">
<div>
<button class="btn btn-primary" onclick="ageInDays()">Click me</button>
</div>
<div>
<button class="btn btn-danger" onclick="reset()">Reset</button>
</div>
</div>
<div class="flex-container-1">
<div id="flex-result"> write something </div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>