You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30-Days-Of-JavaScript/solutions/day-04/index.html

32 lines
928 B

<!DOCTYPE html>
<html lang="en">
<head>
<title>30DaysOfJavaScript: Day 04</title>
</head>
<body style="background-color: black; color: white;">
<style>
button {
color: white;
background-color: black;
padding: 5px;
margin: 5px;
border-radius: 6px;
}
</style>
<h1>30DaysOfJavaScript: Day 04</h1>
<h2>Conditionals</h2>
<script src="main.js"></script>
<script src="level2.js"></script>
<button onclick="canDrive()">Are you old enough to drive ?</button><br>
<button onclick="isOlder()">Are you older than me ?</button><br>
<button onclick="isEven()">Is this number even or odd ?</button><br>
<button onclick="grades()">What grade did you get ?</button><br>
<button onclick="whatSeason()">What season is it ?</button><br>
<button onclick="isWeekend()">Is it the weekend ?</button><br>
</body>
</html>