Centre le logo en html
Fermé
Mehdi Mehdi
-
29 mai 2016 à 15:03
mchev Messages postés 222 Date d'inscription dimanche 25 mars 2007 Statut Membre Dernière intervention 6 août 2016 - 29 mai 2016 à 15:14
mchev Messages postés 222 Date d'inscription dimanche 25 mars 2007 Statut Membre Dernière intervention 6 août 2016 - 29 mai 2016 à 15:14
A voir également:
- Centre le logo en html
- Editeur html - Télécharger - HTML
- Centre de messagerie - Guide
- Logo jeu - Télécharger - Jeux vidéo
- Tv tcl bloqué sur logo - Forum Téléviseurs
- Logo attention word - Forum Bureautique
1 réponse
mchev
Messages postés
222
Date d'inscription
dimanche 25 mars 2007
Statut
Membre
Dernière intervention
6 août 2016
44
29 mai 2016 à 15:14
29 mai 2016 à 15:14
<div class="logo">
<img src="logo-parfait2.png" title="logo du site" alt="le logo"/>
</div>
<style>
.logo {
width:100%;
display:block;
text-align: center;
}
.logo img {
width: 400px;
height:150px;
}
</style>