navigation entre page,pied de page

This commit is contained in:
Hugo IZANIC 2024-01-02 15:51:16 +01:00
parent a25b1e7c58
commit f61fa3e16c
9 changed files with 158 additions and 40 deletions

View File

@ -1,17 +1,23 @@
body{ body{
margin: 0; margin: 0;
background: linear-gradient(180deg,rgba(63,94,251,0.7),rgba(252,70,107,0.7) 100%); background: linear-gradient(180deg,rgba(63,94,251,0.7),rgba(252,70,107,0.7) 100%);
} }
ul{
margin: 0;
padding: 0;
}
header{ header{
margin-bottom: 20vh; margin-bottom: 20vh;
} }
p {
margin: 0;
font-size: 25px ;
}
nav{ nav{
font-size: 20px ;
top: 0; top: 0;
left: 0; left: 0;
z-index: 1; z-index: 1;
@ -19,6 +25,7 @@ nav{
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-around; justify-content: space-around;
flex-direction: row-reverse;
background: linear-gradient(45deg,orange 35%,darkred); background: linear-gradient(45deg,orange 35%,darkred);
width: 100%; width: 100%;
@ -52,24 +59,16 @@ main{
#btn_up{ #btn_up{
position: fixed; position: fixed;
background-color: transparent;
border-color: transparent;
right: 2vw; right: 2vw;
bottom: 2vh; bottom: 2vh;
height: 4vh; height: 4vh;
width: 4vh; width: 4vh;
} }
li{ nav li{
display: inline-block; display: inline-block;
} }
p{
font-family: unset;
font-size: 30px;
}
.img_gauche_txt_droite{ .img_gauche_txt_droite{
@ -102,7 +101,7 @@ p{
.img_droite_txt_gauche{ .img_droite_txt_gauche{
display: flex; display: inline-flex;
flex-direction: row-reverse; flex-direction: row-reverse;
justify-content: space-around; justify-content: space-around;
align-items: center; align-items: center;
@ -122,31 +121,30 @@ p{
.img_droite_txt_gauche p:hover{ .img_droite_txt_gauche p:hover{
box-shadow: -15px -10px rgba(0,0,0,0.5); box-shadow: -15px -10px rgba(0,0,0,0.5);
} }
.img_droite_txt_gauche img{border-radius: 10px;} .img_droite_txt_gauche img{border-radius: 10px;transform: transform linear 1s;}
.img_droite_txt_gauche img:not(:hover) { .img_droite_txt_gauche img:not(:hover) {
transform: transform linear 1s;
filter: saturate(0.2); filter: saturate(0.2);
transform: scale(0.8,0.8); transform: scale(0.9,0.9);
} }
#pied_de_page{
font-size: 15px;
}
.page{ .page{
display: block;
list-style-type: none; list-style-type: none;
text-decoration: none; text-decoration: none;
color: black; color: black;
margin-right: 10vh;
font-size: 2vh; }
.page p{margin-right: 10vh;
transition: transform linear 0.2s;
} }
.page:hover{ .page p:hover{
transform: scale(1.2,1.2);
color: gold; color: gold;
transform: scale(1.2,1.2);
} }
@ -154,6 +152,48 @@ p{
footer{ footer{
background-color: orange; display: flex;
padding-bottom: 15vh; padding: 2%;
align-items: center;
flex-direction: row-reverse;
justify-content: space-around;
background-color: grey;
}
footer #reseaux li{
list-style-type: none;
text-decoration: none;
display: inline-block;
}
footer #reseaux p{
color: black;
padding-left: 15px;
font-size: 25px;
}
footer #reseaux li img{
width: 3vw;
height: 3vh;
}
footer #reseaux li img:not(:hover){
transition: transform linear 0.5s;
opacity: 50%;
}
footer #reseaux li img:hover{
transition: transform linear 0.2s;
transform: scale(1.5);
}
footer #autres{
margin-top: 2%;
}
footer #autres p{
color: black;
font-size: 30px;
} }

View File

@ -0,0 +1,29 @@
<!doctype html>
<html lang="fr">
<head>
<title> Casino du coeur </title>
<meta charset="utf-8">
<link rel = "stylesheet" type = "text/css" href = "../CSS/styles.css">
<meta name="keywords" content="casino">
<link rel = "icon" type = "/image/png" href = "../img/icon.png">
</head>
<body>
<header>
<nav>
<a href="#"><img id="icone" src="../img/icon.png" alt="icone du site"></a>
<ul>
<li> <a href= "../" class="page"><p>Page 1</p> </a></li>
<li> <a href= "#" class="page"><p>Page 2</p> </a></li>
<li> <a href= "page_3.html" class="page"><p>Page 3</p> </a> </li>
<li> <a href= "page_4.html" class="page"><p>Page 4</p> </a></li>
</ul>
</nav>
</header>
</body>

View File

@ -14,14 +14,14 @@
<nav> <nav>
<a href=""><img id="icone" src="../img/icon.png" alt="icone du site"></a> <a href="#"><img id="icone" src="../img/icon.png" alt="icone du site"></a>
<ul> <ul>
<li> <a href= "../index.html" class="page">Page 1 </a></li> <li> <a href= "../" class="page"><p>Page 1</p> </a></li>
<li> <a href= "page_2.html" class="page">Page 2 </a></li> <li> <a href= "page_2.html" class="page"><p>Page 2</p> </a></li>
<li> <a href= "#" class="page">Page 3 </a> </li> <li> <a href= "#" class="page"><p>Page 3</p> </a> </li>
<li> <a href= "page_4.html" class="page">Page 4 </a></li> <li> <a href= "page_4.html" class="page"><p>Page 4</p> </a></li>
</ul> </ul>
</nav> </nav>

View File

@ -0,0 +1,29 @@
<!doctype html>
<html lang="fr">
<head>
<title> Casino du coeur </title>
<meta charset="utf-8">
<link rel = "stylesheet" type = "text/css" href = "../CSS/styles.css">
<meta name="keywords" content="casino">
<link rel = "icon" type = "/image/png" href = "../img/icon.png">
</head>
<body>
<header>
<nav>
<a href="#"><img id="icone" src="../img/icon.png" alt="icone du site"></a>
<ul>
<li> <a href= "../" class="page"><p>Page 1</p> </a></li>
<li> <a href= "page_2.html" class="page"><p>Page 2</p> </a></li>
<li> <a href= "page_3.html" class="page"><p>Page 3</p> </a> </li>
<li> <a href= "#" class="page"><p>Page 4</p> </a></li>
</ul>
</nav>
</header>
</body>

View File

@ -0,0 +1 @@
icone : https://icones8.fr/ https://fontawesome.com

1
img/icone/instagram.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

1
img/icone/tiktok.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 2.2 KiB

1
img/icone/twitter.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" viewBox="0 0 512 512"><!--!Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path opacity="1" fill="#1E3050" d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg>

After

Width:  |  Height:  |  Size: 437 B

View File

@ -5,6 +5,7 @@
<head> <head>
<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">
<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">
@ -17,14 +18,14 @@
<nav> <nav>
<a href=""><img id="icone" src="img/icon.png" alt="icone du site"></a> <a href="#"><img id="icone" src="img/icon.png" alt="icone du site"></a>
<ul> <ul>
<li> <a href= "#" class="page">Page 1 </a></li> <li> <a href= "#" class="page"><p>Page 1</p> </a></li>
<li> <a href= "HTML/page_2.html" class="page">Page 2 </a></li> <li> <a href= "HTML/page_2.html" class="page"><p>Page 2</p> </a></li>
<li> <a href= "HTML/page_3.html" class="page">Page 3 </a> </li> <li> <a href= "HTML/page_3.html" class="page"><p>Page 3</p> </a> </li>
<li> <a href= "HTML/page_4.html" class="page">Page 4 </a></li> <li> <a href= "HTML/page_4.html" class="page"><p>Page 4</p> </a></li>
</ul> </ul>
</nav> </nav>
@ -58,10 +59,25 @@
<footer> <footer>
<p id="pied_de_page">
Pied de<br> <div id="reseaux">
Page
</p> <ul>
<li><a href="https://twitter.com" target="_blank"> <img src="img/icone/twitter.svg"></a></li>
<li><a href="https://instagram.com" target="_blank"> <img src="img/icone/instagram.svg"></a></li>
<li><a href="https://tiktok.com" target="_blank"> <img src="img/icone/tiktok.svg"></a></li>
</ul>
<p> Suivez nos actuaités !</p>
</div>
<div id="autres">
<ul>
<li><a href="" target="_blank"><p>Mentions légales</p></a></li>
<li><a href="" target="_blank"><p>Conditions générales d'utilisation</p></a></li>
</ul>
</div>
<a href="#"><img id="icone" src="img/icon.png" alt="icone du site"></a>
</footer> </footer>