forked from diegosalazar343/leap-year
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Leap Year</title>
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<script src="js/jquery-3.5.1.js"></script>
<script src="js/scripts.js"></script>
</head>
<body>
<div class="container">
<h1>Leap Year Checker</h1>
<p>We will tell you if the year is a leap year!</p>
<form id="leapYear">
<div class ="form-group">
<label for="yearInput">Enter a year:</label>
<input id="yearInput" class="form-control" type="text">
</div>
<button type="submit" class="btn-danger">Submit!</button>
</form>
<div id ="leapTrue" class="truth">
<p>The year <span class="yearInput"></span><span id="yearInput"> is a leap year!</span></p>
</div>
<div id="leapFalse" class="wrong">
<p>The year <span class="yearInput"></span><span id="yearInput"> is not a leap year!</span></p>
</div>
</div>
</body>
</html>