-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpres-jeu.html
106 lines (100 loc) · 5.22 KB
/
pres-jeu.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0 shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.typekit.net/bld7bay.css">
<link rel="stylesheet" href="style/style.css">
<title>Jeu</title>
</head>
<body class="bg-dark text-bg-dark">
<header>
<div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-xs-12"></div>
</header>
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand m-5" href="index.html"><img src="img/logo/riot-games-seeklogo.com.svg" height="28"
alt=""></a>
<button class="navbar-toggler me-5" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Présentation
</a>
<div class="dropdown-menu bg-dark" aria-labelledby="navbarDropdown">
<a class="dropdown-item active text-bg-light" href="#">Jeu</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item text-capitalize text-bg-dark" href="pres-map.html">La faille</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="champion.html">Champions</a>
</li>
<li class="nav-item">
<a class="nav-link" href="musiques.html">Musiques</a>
</li>
</ul>
</div>
</nav>
<main class="mt-5">
<hr class="m-auto w-50 bg-dark border-2 border-top border-light">
<section class="mt-5 mb-5">
<h2 class="p-5 mx-auto h2">Choisissez votre champion</h2>
<div class="card-group">
<div class="card text-bg-dark">
<img class="card-img-top" src="img/champs/Senna_9.jpg" alt="Champ1">
<div class="card-body">
<h5 class="card-title text-center">Nom</h5>
<p class="card-text text-center">Lorem ipsum dolor sit amet</p>
<p class="card-text text-left"><small class="text-muted">...</small></p>
</div>
</div>
<div class="card text-bg-dark">
<img class="card-img-top" src="img/champs/Jax_12.jpg" alt="Champ1">
<div class="card-body text-center">
<h5 class="card-title">Nom</h5>
<p class="card-text">Lorem ipsum dolor sit amet</p>
<p class="card-text"><small class="text-muted">...</small></p>
</div>
</div>
<div class="card text-bg-dark">
<img class="card-img-top" src="img/champs/Kayle_33.jpg" alt="Champ1">
<div class="card-body">
<h5 class="card-title text-center">Nom</h5>
<p class="card-text text-center">Lorem ipsum dolor sit amet</p>
<p class="card-text text-end"><small class="text-muted">...</small></p>
</div>
</div>
</div>
</section>
<hr class="m-auto w-50 bg-dark border-2 border-top border-light">
<section class="mt-5">
<h2 class="p-5 mx-auto h2">Jouer</h2>
<video class="mt-5 w-100 rounded-circle" autoplay loop muted>
<source src="video/ss2020_urgot_vi_cait_1920x1080.mp4" type="video/mp4">
</video>
</section>
</main>
<footer>
<div class="mt-5 mb-5 text-center border-top"></div>
<div class="text-center mb-3"><a class="link-light" href="https://github.com/huguestouyon">Github</a></div>
</footer>
<!-- JavaScript Bundle with Popper -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>