-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·42 lines (36 loc) · 1.51 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="origami.css">
<title> How To Origami </title>
<meta charset="UTF-8">
</head>
<body onload = "check()">
<h1 id="heading" >How To Origami</h1>
<p id="caption"> Valentine's Day Special! </p>
<div>
<h2 id="title"> <ins>The Flower Heart:</ins> </h2>
<h4 id="text"> </h4>
<img id="images" src="final.jpg" style="width:304px;height:228px" /></br>
<button id="prv" onclick = "changeImageBack()" style ="color: blue"> < Previous </button>
<button id="but" onclick = "changeImage()" style ="color: blue"> Next > </button>
</div>
<div>
<h2 id="title"> <ins>The Crane Couple: </ins></h2>
<h4 id="text2"> </h4>
<img id="images2" src="18.jpg" style="width:304px;height:228px" /></br>
<button id="prv2" onclick = "changeImageBack2()" style ="color: purple"> < Previous </button>
<button id="but2" onclick = "changeImage2()" style ="color: purple"> Next > </button>
</div>
<div>
<h2 id="title"> <ins>The Lily Flower: </ins></h2>
<h4 id="text3"> </h4>
<img id="images3" src="a18.jpg" style="width:304px;height:228px" /></br>
<button id="prv3" onclick = "changeImageBack3()" style ="color: green"> < Previous </button>
<button id="but3" onclick = "changeImage3()" style ="color: green"> Next > </button>
</div>
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="origami.js"></script>
</body>
</html>