diff options
| -rw-r--r-- | artistes.html | 4 | ||||
| -rw-r--r-- | commun.css | 14 |
2 files changed, 18 insertions, 0 deletions
diff --git a/artistes.html b/artistes.html index 24128ab..91ae52a 100644 --- a/artistes.html +++ b/artistes.html @@ -3,6 +3,9 @@ <link rel="stylesheet" href="artistes.css"> </head> <body> + <header> + <img src="https://upload.wikimedia.org/wikipedia/en/a/a4/Golden_Sun_icon.png" + alt="logo"> <nav> <ol> <li>accueil</li> @@ -11,6 +14,7 @@ <li>contact</li> </ol> </nav> + </header> <div class="main"> <div id="photos"> @@ -1,3 +1,17 @@ +header { + display: flex; + width: 100%; +} + +header img { + height: 3em; + margin: auto; +} + +nav { + flex: 1; +} + nav ol { display: flex; padding-left: 0; |
