-
Notifications
You must be signed in to change notification settings - Fork 6
/
landing-page.html
71 lines (70 loc) · 2.59 KB
/
landing-page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ADEPT Informatique</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Montserrat:300,400,500,700" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
<style>
h4{
color:white !important;
}
hr{
border-top: 1px solid rgba(255, 255, 255,1);
}
#hoodiebtn {
border : 1px solid #10d213;
}
#lanbtn{
background : #007bff !important;
}
#lanbtn:hover{
background:black !important;
color: deepskyblue !important;
}
@media (max-width: 768px){
hr{
border-top: 1px solid rgba(255, 255, 255,0);
}
}
</style>
</head>
<body>
<section id="intro">
<div class="intro-container">
<div id="introCarousel" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators"></ol>
<div class="carousel-inner" role="listbox">
<div class="carousel-item active" style="background-image: url('img/intro-carousel/1.jpg');">
<div class="carousel-container">
<div class="carousel-content">
<div class="text-center">
<img src="img/hoodies/badge.png" width="150">
</div>
<h2>Bienvenue à l'ADEPT</h2>
<hr>
<h4>Notre site sera bientôt prêt !<br><strong>Mais en attendant, pourquoi ne pas réserver un hoodie ?!</strong></h4>
<a href="./hoodies" class="btn-get-started scrollto" id="hoodiebtn">Réserver mon hoodie!</a>
<a href="http://lanadept.com" class="btn btn-get-started btn-primary" id="lanbtn">Site web du LAN</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- #intro -->
<!-- JavaScript Libraries -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/jquery-migrate/dist/jquery-migrate.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>