nos jeux
This commit is contained in:
parent
8ef0ced274
commit
27463ba03f
@ -3,6 +3,7 @@ body{
|
|||||||
}
|
}
|
||||||
|
|
||||||
main{
|
main{
|
||||||
|
padding-top: 40px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
18
CSS/nos jeux.css
Normal file
18
CSS/nos jeux.css
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
.jeu{
|
||||||
|
padding-left: 25%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
h2{
|
||||||
|
padding-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body{
|
||||||
|
background-size: cover;
|
||||||
|
background-image: url(../img/layered-peaks-haikei.svg) ;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
main{
|
||||||
|
padding-top: 45px;
|
||||||
|
}
|
@ -193,7 +193,7 @@ footer{
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
flex-direction: row-reverse;
|
flex-direction: row-reverse;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
background-color: #00010c;
|
background-color: #000000;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<li>
|
<li>
|
||||||
<button class="button" onclick="window.location.href='../index.html'"> Accueil</button>
|
<button class="button" onclick="window.location.href='../index.html'"> Accueil</button>
|
||||||
</li>
|
</li>
|
||||||
<li> <button class="button" onclick="window.location.href='page_2.html"> Nos jeux</button></li>
|
<li> <button class="button" onclick="window.location.href='page_2.html'"> Nos jeux</button></li>
|
||||||
<li><button class="button" onclick="window.location.href='page_3.html'"> Nos partenaires</button> </li>
|
<li><button class="button" onclick="window.location.href='page_3.html'"> Nos partenaires</button> </li>
|
||||||
<li><button class="button" onclick="window.location.href='page_4.html'"> A propos de nous</button></li>
|
<li><button class="button" onclick="window.location.href='page_4.html'"> A propos de nous</button></li>
|
||||||
<li> <button class="button" onclick="window.location.href='contact.html'"> Contact</button></li>
|
<li> <button class="button" onclick="window.location.href='contact.html'"> Contact</button></li>
|
||||||
|
@ -4,6 +4,8 @@
|
|||||||
<title> Casino du coeur </title>
|
<title> Casino du coeur </title>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<link rel = "stylesheet" type = "text/css" href = "../CSS/styles.css">
|
<link rel = "stylesheet" type = "text/css" href = "../CSS/styles.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../CSS/accueil.css">
|
||||||
|
<link rel="stylesheet" type="text/css" href="../CSS/nos jeux.css">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="keywords" content="casino">
|
<meta name="keywords" content="casino">
|
||||||
<link rel = "icon" type = "/image/png" href = "../img/icon.png">
|
<link rel = "icon" type = "/image/png" href = "../img/icon.png">
|
||||||
@ -29,6 +31,52 @@
|
|||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
<main class="nos jeux">
|
||||||
|
<h1>Nos jeux</h1>
|
||||||
|
|
||||||
|
|
||||||
|
<div id="img-txt">
|
||||||
|
<h2>Blackjack</h2>
|
||||||
|
<div class="img_gauche_txt_droite jeu">
|
||||||
|
<p>
|
||||||
|
Parmis nos nombreux jeux vous pourrez retrouver du blackjack
|
||||||
|
</p>
|
||||||
|
<img src="../img/blackjack.jpg" alt="blackjack">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<h2>Poker</h2>
|
||||||
|
|
||||||
|
<div class="img_droite_txt_gauche jeu">
|
||||||
|
<img src="../img/Comprendre-les-regles-du-poker.jpg" alt="poker">
|
||||||
|
<p>
|
||||||
|
Vous retrouverez aussi du poker et toutes ses variété
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2>Roulette</h2>
|
||||||
|
|
||||||
|
<div class="img_gauche_txt_droite jeu">
|
||||||
|
<p>
|
||||||
|
Vous pourrez aussi tentez votre chance a la roulette
|
||||||
|
</p>
|
||||||
|
<img src="../img/roulette.png" alt="roulette">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h2>Machine a sous</h2>
|
||||||
|
<div class="img_gauche_txt_droite jeu">
|
||||||
|
|
||||||
|
<img src="../img/maichine_a_sous.jpg" alt="machine a sous">
|
||||||
|
<p>
|
||||||
|
Enfin vous aurez un immense choix parmis les machine a sous les plus connus
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
|
|
||||||
|
|
||||||
|
1
img/layered-peaks-haikei.svg
Normal file
1
img/layered-peaks-haikei.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 1.4 KiB |
@ -59,7 +59,7 @@
|
|||||||
|
|
||||||
<div id="titre">
|
<div id="titre">
|
||||||
<h1><span class="txt_rouge">Casino du Coeur</span></h1>
|
<h1><span class="txt_rouge">Casino du Coeur</span></h1>
|
||||||
<p> Le casino dfgfsgdfgh </p>
|
<p> Tout le monde est gagnant </p>
|
||||||
</div>
|
</div>
|
||||||
<a href="#"><img id="btn_up" src="img/icone/arrow-up.svg" alt="icone de fleche"></a>
|
<a href="#"><img id="btn_up" src="img/icone/arrow-up.svg" alt="icone de fleche"></a>
|
||||||
|
|
||||||
@ -86,7 +86,7 @@
|
|||||||
<div id="img_droite_txt_gauche">
|
<div id="img_droite_txt_gauche">
|
||||||
<img class="img_main" src="img/casion_background.jpeg" alt="image d'un casino">
|
<img class="img_main" src="img/casion_background.jpeg" alt="image d'un casino">
|
||||||
<p>
|
<p>
|
||||||
Nous partageons avec nos <a href="HTML/page_3.html"><span class="txt_rouge"><strong> partenaires </strong> </span></a> des valeurs qui nous tiennent a coeur tels que ..
|
Nous partageons avec nos <a href="HTML/page_3.html"><span class="txt_rouge"><strong> partenaires </strong> </span></a> des valeurs qui nous tiennent a coeur tels que la solidarité, l'altruisme ou la générosité
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user