HTML

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<!

DOCTYPE html>
<html>

<head>
<title>
JavaScript to check leap year
</title>
</head>

<body>
Input Year: <input type="text" id = "year"/>

<input type="button" id="button" onClick="isLeapYear()"


value="Check Leap Year">

<p id="GFG"></p>

<!-- JavaScript code to check given year is


leap year or not -->
<script>
function isLeapYear() {
var year= document.getElementById("year").value;

document.getElementById("GFG").innerHTML
= (year % 100 === 0) ? (year % 400 === 0)
: (year % 4 === 0);
}
</script>

<!DOCTYPE html>
<html>
<head>
<title>My first web page</title>
</head>
<body>
<h1>My first web page</h1>

<h2>Lists</h2>
<ul>
<li>To learn HTML</li>
<li>To show off</li>
<li>Because I've fallen in love with my computer and want to

give her some HTML loving.</li>


</ul>
<ol>
<li>To learn HTML</li>
<li>To show off</li>
<li>Because I've fallen in love with my computer and want to
give her some HTML loving.</li>
</ol>
</body>
</html>
</body>

</html>

You might also like