-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Quotes rotator</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<ul id="background-slider">
<!--
<li class="background-slider-item"></li>
<!-- /.background-slider-item -->
</ul>
<!-- /.background-slider -->
<div class="rotator-wrapper">
<div class="rotator-progress"></div>
<!-- /.rotator-progress -->
<div class="rotator-content">
<blockquote>
<p class="quote-text">Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.</p>
<footer class="quote-author"><span>Albert Einstein</span></footer>
<!-- /.quote-author -->
</blockquote>
<!-- /.quote-text -->
</div>
<!-- /.rotator-content -->
<div class="rotator-controls">
</div>
<!-- /.rotator-controls -->
</div>
<!-- /.rotator-wrapper -->
<script src="js/jquery-3.1.0.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>