23 lines
720 B
HTML
23 lines
720 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 2</h1>
|
|
<p>Here's the second thing you need to know about our site.</p>
|
|
|
|
<input type="button" id="prev" value="Prev">
|
|
<input type="button" id="next" value="Next">
|
|
</main>
|
|
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
|
|
<script>
|
|
$("#prev").click( () => location = "tutorial1.html");
|
|
$("#next").click( () => location = "tutorial3.html");
|
|
</script>
|
|
</body>
|
|
</html> |