-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (53 loc) · 1.91 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Marvel Cinematic Universe</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="css/index.css"/>
<link rel="icon" href="data/header_logo.png" type="image/x-icon">
<!--Owl Carousal-->
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<script src="js/jquery.js"></script>
<script src="js/owl.carousel.min.js"></script>
<style>
.item:hover{
cursor: grab;
transform: scale(1.05);
transition: all 0.2s ease-in-out;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body>
<nav id="top-nav">
<ul>
<li><a href="index.html"><img src="data/Marvel-Logo.png" class="logo"/></a></li>
</ul>
</nav>
<!--Content Owl Carousal-->
<div class="owl-carousel" style="padding-top: 150px;">
<div class="item" ><img src="data/1.jpg" width="100px"></div>
<div class="item" ><img src="data/2.jpg" width="100px"></div>
<div class="item" ><img src="data/3.jpg" width="100px"></div>
<div class="item" ><img src="data/4.jpg" width="100px"></div>
<div class="item" ><img src="data/5.jpg" width="100px"></div>
</div>
<!--Nav Bar-->
<div class="nav-bottom-bar">
<a href="characters.php">Characters</a>
<a href="movies.php">Movies</a>
<a href="tvshows.php">TV Shows</a>
<a href="history.html">History</a>
</div>
</body>
<!--owl carousal-->
<script>
$('.owl-carousel').owlCarousel({
margin: 50,
loop:true,
autoWidth:false,
items:4
})
</script>
</html>