-
Notifications
You must be signed in to change notification settings - Fork 0
/
carousel.html
81 lines (75 loc) · 3.95 KB
/
carousel.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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="style.css" rel="stylesheet">
<title>hmm</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="carousel" class="carousel slide" data-ride="carousel">
<!-- Menu -->
<ol class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class="active"></li>
<li data-target="#carousel" data-slide-to="1"></li>
<li data-target="#carousel" data-slide-to="2"></li>
</ol>
<!-- Items -->
<div class="carousel-inner">
<div class="item active">
<img src="http://lorempixel.com/1900/410/abstract/1" alt="Slide 1" />
<div class="container">
<div class="carousel-caption">
<h1>Welcome...</h1>
<h4>Become a Member today and get Free access to unlimited contents. Members get notifications
and email alerts when new content like videos, music, and upcoming events are updated and added</h4>
<p><a class="btn btn-lg btn-primary" href="#" role="button">Become a Member today</a></p>
</div>
</div>
</div>
<div class="item">
<img src="http://lorempixel.com/1900/410/abstract/2" alt="Slide 2" />
<div class="container">
<div class="carousel-caption">
<h1>Psalm 104:33</h1>
<p>I will sing to the LORD as long as I live; I will sing praise to my God while I have my being.</p>
</div>
</div>
</div>
<div class="item">
<img src="http://lorempixel.com/1900/410/abstract/3" alt="Slide 3" />
<div class="container">
<div class="carousel-caption">
<h1>Jeremiah 29:11 NIV</h1>
<p>For I know the plans I have for you,” declares the LORD,
“plans to prosper you and not to harm you, plans to give you hope and a future.</p>
</div>
</div>
</div>
</div>
<a href="#carousel" class="left carousel-control" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a href="#carousel" class="right carousel-control" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
<script>
$("#carousel").carousel();
</script>
<script>$("#carousel").carousel();</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>