forked from chriscoyier/My-Grunt-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (26 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Example Project</title>
<link rel="stylesheet" href="css/build/minified/global.css">
</head>
<body>
<h1>Chris' Grunt Boilerplate <a href="https://github.com/chriscoyier/My-Grunt-Boilerplate">☮</a></h1>
<p>This is a jQuery plugin (<a href="http://owlgraphic.com/owlcarousel/">Owl Carousel</a>) to illustrate dependancies in JS and CSS.</p>
<div id="owl-demo" class="owl-carousel">
<div class="item"><img src="images/home-carousel/owl1.jpg" alt="Owl Image"></div>
<div class="item"><img src="images/home-carousel/owl2.jpg" alt="Owl Image"></div>
<div class="item"><img src="images/home-carousel/owl3.jpg" alt="Owl Image"></div>
<div class="item"><img src="images/home-carousel/owl4.jpg" alt="Owl Image"></div>
<div class="item"><img src="images/home-carousel/owl5.jpg" alt="Owl Image"></div>
<div class="item"><img src="images/home-carousel/owl6.jpg" alt="Owl Image"></div>
<div class="item"><img src="images/home-carousel/owl7.jpg" alt="Owl Image"></div>
<div class="item"><img src="images/home-carousel/owl8.jpg" alt="Owl Image"></div>
</div>
<p>This is a box moving with CSS @keyframes and transforms, to illustrate prefixing.</p>
<div class="moving-box"></div>
<script src="js/build/production.min.js"></script>
</body>
</html>