-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathahc.html
135 lines (74 loc) · 3.45 KB
/
ahc.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link type="text/css" rel="stylesheet" href="style.css"/>
<link href='http://fonts.googleapis.com/css?family=Nunito:300,700' rel='stylesheet' type='text/css'>
<!--JQuery Cycle Plug in- http://jquery.malsup.com/cycle/--!>
</style>
<!-- include jQuery library- comes FIRST! -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<!-- include Cycle plugin -->
<script type="text/javascript" src="js/jquery.cycle.all.latest.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade',
speed: 'fast',
timeout: 0,
next: '#next1',
prev:'#prev1'
});
});
</script>
<title>Arthur Smid – Projects</title>
</head>
<body class="ifap">
<div id="container">
<div id="leftcol">
<a href="childrensbooks.html" class="logo"> </a>
<!--end logo--!>
<div id="navigation">
<a href="projects.html">Books</a>
<a href="profile.html">Profile</a>
<a href="contact.html">Contact</a>
</div>
<!--end navigation--!>
</div>
<!--end leftcol--!>
<div id="window">
<h1>ADAM HAS A COW</h1>
</br>
<div class="slideshow">
<img src="cb_images/ahc/ahc1.jpg" width="650px" height="350px" alt="Adam has a Cow spread 1">
<img src="cb_images/ahc/ahc2.jpg" width="650px" height="350px" alt="Adam has a Cow spread 2">
<img src="cb_images/ahc/ahc3.jpg" width="650px" height="350px" alt="Adam has a Cow spread 3">
<img src="cb_images/ahc/ahc4.jpg" width="650px" height="350px" alt="Adam has a Cow spread 4">
<img src="cb_images/ahc/ahc5.jpg" width="650px" height="350px" alt="Adam has a Cow spread 5">
<img src="cb_images/ahc/ahc6.jpg" width="650px" height="350px" alt="Adam has a Cow spread 6">
<img src="cb_images/ahc/ahc7.jpg" width="650px" height="350px" alt="Adam has a Cow spread 7">
<img src="cb_images/ahc/ahc8.jpg" width="650px" height="350px" alt="Adam has a Cow spread 8">
<img src="cb_images/ahc/ahc9.jpg" width="650px" height="350px" alt="Adam has a Cow spread 9">
<img src="cb_images/ahc/ahc10.jpg" width="650px" height="350px" alt="Adam has a Cow spread 10">
<img src="cb_images/ahc/ahc11.jpg" width="650px" height="350px" alt="Adam has a Cow spread 11">
<img src="cb_images/ahc/ahc12.jpg" width="650px" height="350px" alt="Adam has a Cow spread 12">
<img src="cb_images/ahc/ahc13.jpg" width="650px" height="350px" alt="Adam has a Cow spread 13">
<img src="cb_images/ahc/ahc14.jpg" width="650px" height="350px" alt="Adam has a Cow spread 14">
<img src="cb_images/ahc/ahc15.jpg" width="650px" height="350px" alt="Adam has a Cow spread 15">
<img src="cb_images/ahc/ahc16.jpg" width="650px" height="350px" alt="Adam has a Cow spread 16">
<img src="cb_images/ahc/ahc17.jpg" width="650px" height="350px" alt="Adam has a Cow spread 17">
</div>
<div id="nav"><a id="prev1" href="#">Prev</a>
<a id="next1" href="#">Next</a></div>
<div id="spacer"> </div>
<div id="footer">
<p class="copyright">©2014 Arthur Smid. All Rights Reserved.</p>
</div>
<!--end footer--!>
</div>
</div>
<!--end container--!>
</body>
</html>