-
Notifications
You must be signed in to change notification settings - Fork 0
/
home-expected.html
30 lines (30 loc) · 1 KB
/
home-expected.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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>This is a title</title>
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/crazy-slider.css">
</head>
<body>
<div class="header">This is a header</div>
<div class="row">
<div class="columns large-12 screenlayout">
<div class="crazy-slider"><img src="http://foo.com/image.jpg"/>
</div>
</div>
</div>
<div class="rest">Rest of page</div>
<footer>This is a footer</footer>
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
<script type="text/javascript" src="./js/crazy-slider.js"></script>
<script>
$(window).load(function() {
$('#crazy-slider').crazySlider();
});
</script>
</body>
</html>