-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (59 loc) · 2.89 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
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>AnimeTab</title>
<link href="../src/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="shortcut icon" href="../src/images/icon.ico" type="image/x-icon">
</head>
<body>
<section class="container-head">
<div class="left-container">
<p>AnimeTab</p>
</div>
<div class="right-container">
<a>Get the Extension!</a>
<p>Be Inspired<br>throughout the day!</p>
</div>
<img src="../src/images/Naruto.png" class="animated slideInUp naruto">
</section>
<section class="container-2">
<p class="line"> AnimeTab replaces your new tab<br>
with inspiring quotes from your<br>
favourite anime.</p>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="item active" style="background-color: #F5F5F5">
<p class="quote" style="color: #5D5A5A">You said you worked hard? Well, maybe you need to work a little longer.</p>
<p class="author" style="color: #5D5A5A">- Saitama</p>
</div>
<div class="item" style="background-color: #4A69BD">
<p class="quote" style="color: white">Never Forget Who You Want To Become!</p>
<p class="author" style="color:white">- Shoto Todoroki</p>
</div>
<div class="item" style="background-color: #E55039">
<p class="quote" style="color: white">Like I always say, can’t find a door? Make your own.</p>
<p class="author" style="color: white">- Edward Elric</p>
</div>
</div>
</div>
</section>
<section class="container-3">
<p>Don't see your favourite quote!<br>
POST your own</p>
<img src="../src/images/post.svg" class="directions">
</section>
<footer>
<p>made on caffine by <a href="https://japsuchiha.github.io/" target="_blank">@japsuchiha</a></p>
</footer>
</body>
<script src="../src/script.js"></script>
</html>