-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjiji.html
More file actions
20 lines (20 loc) · 699 Bytes
/
jiji.html
File metadata and controls
20 lines (20 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<title>MidTerm Review</title>
<link rel="stylesheet" href="css/my-style.css">
<script src="js/jiji.js"></script>
<link rel="shortcut icon" type="image/ico" href="img/favicon.ico"/>
<meta charset="utf-8">
</head>
<body>
<div class="title-box">
<h1>Jiji the cat</h1>
</div>
<div id="photo-box">
<button type="button" id="prev-photo" onclick="prevPhoto()">Back</button>
<img id="photo" src="./img/sitting(small).jpg" alt="photo">
<button type="button" id="next-photo" onclick="nextPhoto()">Next</button>
</div>
</body>
</html>