-
Notifications
You must be signed in to change notification settings - Fork 91
/
index.html
52 lines (48 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bonne année</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap-3.min.css">
<link rel="stylesheet" href="css/font-awesome-4.7.0/css/font-awesome.min.css">
<link
href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800&subset=cyrillic-ext,latin-ext"
rel="stylesheet">
<link rel="stylesheet" href="css/flag-icon-css-master/css/flag-icon.min.css">
</head>
<body>
<section class="gasy-content">
<a class="github-link" href="https://github.com/julkwel/bonane" target="_blank">
<i class="fa fa-github fa-lg"></i>
</a>
<canvas id="canvas"></canvas>
<div class="text">
<h1>Bonne année
<span id="year"></span>
</h1>
<br>
<div class="row">
<div class='col-md-offset-2 col-md-8'>
<div class="carousel slide" data-ride="carousel" id="quote-carousel">
<ol class="carousel-indicators" id="carousel-indicators">
</ol>
<div class="carousel-inner" id="name"></div>
<a data-slide="prev" href="#quote-carousel" class="left carousel-control">
<i class="fa fa-chevron-left" style="color: white"></i>
</a>
<a data-slide="next" href="#quote-carousel" class="right carousel-control">
<i class="fa fa-chevron-right" style="color: white"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bonane.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>