-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (62 loc) · 2.33 KB
/
index.html
File metadata and controls
67 lines (62 loc) · 2.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no">
<title>Brébeuf Code</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<!-- Link to custom CSS -->
<link rel="stylesheet" type="text/css" href="main.css">
<!--jQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<!--fade-in-->
<script>document.body.classname += ' fade-out';</script>
<!--<nav class="navbar navbar-expand-sm bg-light">-->
<!--<!– Links –>-->
<!--<ul class="navbar-nav">-->
<!--<li class="nav-item">-->
<!--<a class="nav-link" href="index.html">Brébeuf Code</a>-->
<!--</li>-->
<!--<li class="nav-item">-->
<!--<a class="nav-link" href="resources.html">Ressources</a>-->
<!--</li>-->
<!--</ul>-->
<!--</nav>-->
<div class="text-content">
<div class="jumbotron" style="height:450px; background-color: transparent !important;">
<header>
<center><h1 style="font-size: 75px">Brébeuf Code</h1></center>
<center><h6>Tous les mercredis, A3-45</h6></center>
</header>
</div>
<div class="container-fluid">
<div>
<div>
<center><h6>Bienvenue, cher camarade! Venez avec les gens de la communauté!</h6></center>
</div>
<br>
<div>
<center>
<button onclick="onEnterButtonPress()" class="btn btn-outline-light btn-lg">Accès au
cours
</button>
</center>
</div>
</div>
</div>
</div>
<script>
$('body').removeClass('fade-out');
function onEnterButtonPress() {
$('body').addClass('fade-out');
location.href = 'resources.html';
}
</script>
</body>
</html>