-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (68 loc) · 3.5 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<html class="no-js" lang="fr">
<head>
<meta charset="utf-8">
<title>Jeu des Paires</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<header class="bg-dark text-white py-5">
<section class="container text-center">
<h1>JEU DE PAIRES</h1>
<p>Travaillez votre mémoire avec le jeu des paires</p>
</section>
</header>
<main class="container">
<div id="score" class="d-flex justify-content-center py-2"></div>
<div class="row d-flex justify-content-center align-items-conter p-5">
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
<div class="col-6 col-sm-4 col-lg-2 colorCard m-1"></div>
</div>
</main>
<footer class="bg-dark text-white py-5 display">
<section class="container text-center">
<p><a href="#" class="list-group-item-action">Mention légales</a></p>
<div class="list-group">
<a href="#" class="list-group-item-action">Suivez-Nous</a>
<a href="#" class="list-group-item-action ">Instagram</a>
<a href="#" class="list-group-item-action ">Faceboock</a>
<a href="#" class="list-group-item-action ">Twitter</a>
</div>
</section>
</footer>
<!-- Add your site or application content here -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.1/dist/umd/popper.min.js" integrity="sha384-SR1sx49pcuLnqZUnnPwx6FCym0wLsk5JZuNx2bPPENzswTNFaQU1RDvt3wT4gWFG" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.min.js" integrity="sha384-j0CNLUeiqtyaRmlzUHCPZ+Gy5fQu0dQ6eZ/xAww941Ai1SxSY+0EQqNXNE6DZiVc" crossorigin="anonymous"></script>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
</html>