-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (68 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!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>JS Problem Solving</title>
<style>
body{
margin: 0;
padding: 0;
}
.check {
width: 80%;
background-color: lightskyblue;
padding: 2rem;
margin-left: 10%;
text-align: center;
}
h1 {
color: rgb(177, 41, 41);
text-align: center;
}
.check h2 {
color: rgb(49, 17, 17);
font-size: 1.3rem;
text-align: center;
background-color: beige;
padding: 1rem;
}
.check.h3 {
color: rgb(64, 16, 16);
font-size: 1.3rem;
text-align: center;
background-color: beige;
padding: 1rem;
}
.check ol li {
list-style-type: none;
margin-bottom: 1rem;
}
.check h6 {
font-size: 1.4rem;
background-color: aquamarine;
padding: 1.2rem;
width: 60%;
margin-left: 20%;
}
</style>
</head>
<body>
<div class="check">
<h1>Welcome to CHECKER HOUSE</h1>
<h6>Here you will get: </h6>
<ol>
<li><b>Inches to Feet Convert :</b> Enter a value in inches and you will get the result in feet.</li>
<li><b>Check whether a number is even or odd:</b> Enter a number and determine whether it is even or odd. </li>
<li><b>Check if a year is a leapyear or not:</b> Enter a year and check if it is a leapyear or not.</li>
<li><b>Get the Sum of 1 to N:</b>Enter a valid number and you will get the sum from 1 to the entered number.</li>
</ol>
<script src="inchesToFeet.js"></script>
<script src="odd-even.js"></script>
<script src="leapyear.js"></script>
<script src="additionOfOneToGivenNumber.js"></script>
<script src="factorial.js"></script>
</div>
</body>
</html>