-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (32 loc) · 980 Bytes
/
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
<!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>
</head>
<body>
<h1>EVEN OR ODD</h1>
<style>
h1 {text-align: center;}
</style>
<form onsubmit="dosum();return false">
num: <input id="num1" type="number" required placeholder="Enter a Number" >
<br>
<br>
<button type="submit">submit</button>
</form>
<h3 id="result"></h3>
<script>
function dosum() {
let firstNumber = Number(document.querySelector("#num1").value)
let resultElement = document.querySelector("#result")
if (firstNumber % 2 === 0) {
resultElement.innerHTML = "Your number is Even";
}
else { resultElement.innerHTML = "Your number is ODD";}
}
</script>
</body>
</html>