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

29 lines
818 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>Here are some cute kittens!</h1>
<img src="images/kittens.jpg" alt="kittens" />
<p class="attribution">Image from <a href="https://pixabay.com/" target="_blank">pixabay.com</a></p>
<input type="button" id="back" value="Back">
Number of pages in history:
<script>
document.write(history.length);
</script>
</main>
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script>
$( "#back" ).click(function() {
history.back();
});
</script>
</body>
</html>