This repository was archived by the owner on Feb 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarousel.html
More file actions
31 lines (30 loc) · 1.38 KB
/
carousel.html
File metadata and controls
31 lines (30 loc) · 1.38 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="assets/css/normalize.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" href="assets/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=PT+Sans:400,700">
<title>Livegen - Carousel</title>
</head>
<body>
<div class="carousel-wrapper">
<div class="carousel-titles">
<ul>
<li>CS:GO The International</li>
<li>The psychology of Link</li>
<li>Indie games Hall of Fame</li>
</ul>
</div>
<ul class="carousel">
<li><a href="#CSGO"><img src="assets/img/cs-go.jpg"/></a></li>
<li><a href="#TLOZ"><img src="assets/img/tloz.jpg"/></a></li>
<li><a href="#BASTION"><img src="assets/img/thekid.jpg"/></a></li>
</ul>
</div>
</body>
<script type="text/javascript" src="assets/js/lib/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="assets/js/pinned-carousel.js"></script>
</html>