2021-03-31 21:56:49 -04:00

21 lines
606 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tutorial</title>
<link type="text/css" rel="stylesheet" href="tutorial.css">
</head>
<body>
<main>
<h1>Tutorial - page 1</h1>
<p>Here's the first thing you need to know about our site.</p>
<input type="button" id="next" value="Next">
</main>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script>
$("#next").click( () => location.replace("tutorial2.html"));
</script>
</body>
</html>