A few modification

This commit is contained in:
2026-03-20 09:34:02 +01:00
parent 760ab677ee
commit 4e45014b47
3 changed files with 33 additions and 7 deletions

View File

@@ -1,4 +1,10 @@
<footer id="footer"> <footer id="footer">
<div id="src">My ass</div> <div id="src">
<div id="Contact"> Me Me Me</div> <a href="google.com">Une source</a>
</div>
<div id="Contact">
Front end : Bousquet Sébastien
--- Back end : Thorel Benjamin
--- Base de donné : JeConnaisPasSonNomDeFamille Jordan
</div>
</footer> </footer>

View File

@@ -1,7 +1,11 @@
<header id="header"> <header id="header">
<div id="logo"> Un Logo </div> <div id="logo">
<a href="index.php">
<img src="Logo.jpg" class="logo">
</a>
</div>
<nav id="nav"> <nav id="nav">
<a id="google" href="google.com">Google</a> <a id="google" class="nav-element" href="google.com">Google</a>
<a id="unTest" href="bing.com">Bing</a> <a id="unTest" class="nav-element" href="bing.com">Bing</a>
</nav> </nav>
</header> </header>

View File

@@ -18,17 +18,32 @@ html, body{
#header { #header {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
padding: 30px; padding: 3px;
background-color: blanchedalmond; background-color: blanchedalmond;
} }
#logo { #logo {
flex:1;
background-color: aqua;
background-image: url("Logo.jpg"); background-image: url("Logo.jpg");
background:no-repeat; /*background:no-repeat;*/
}
.logo{
height: 100%;
width: 100%;
} }
#nav { #nav {
background-color: yellow; background-color: yellow;
flex: 9;
text-align: initial;
letter-spacing: 2px;
padding: 10px;
}
.nav-element {
padding: 10px;
} }
/*Body et son contenu */ /*Body et son contenu */
@@ -63,6 +78,7 @@ body {
height: 100%; height: 100%;
border: 1px solid rgba(0,0,0,.125); border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem; border-radius: .25rem;
overflow: scroll;
} }
/*Footer et son contenue*/ /*Footer et son contenue*/