- Corrige les erreurs CSS (radius-border, prefixes vendeur obsoletes) - Corrige la typo "La ciel" et les balises dt→dl dans index.html - Ajoute les vrais liens Wikipedia pour les grands noms - Harmonise les references au lycee Charlotte Perriand - Met a jour l'annee dans INTRODUCTION.md (2024→2025) - Remplace les anciens TP (PDFs niveau NSI/BTS) par 3 nouveaux TP adaptes : - TP1 : Decouverte du HTML (structure, balises, CSS) - TP2 : Experience utilisateur (analyse UX, bonnes pratiques) - TP3 : Ma premiere page web en CSS (mini-projet progressif) - Ajoute le schema client/serveur et les templates de demarrage TP3 - Supprime les anciens TP 2/3/4 et intro.pdf (gardes en NSI) - Met a jour le README avec le nouveau sommaire Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
1.0 KiB
CSS
51 lines
1.0 KiB
CSS
h1
|
|
{
|
|
font-size: 32px;
|
|
text-shadow: -1px -1px #0c0, 1px 1px #060, -3px 0 4px #000;
|
|
font-family:Arial, Helvetica, sans-serif;
|
|
color: #090;
|
|
padding:16px;
|
|
font-weight:lighter;
|
|
box-shadow:2px 2px 6px #888;
|
|
text-align:center;
|
|
display:block;
|
|
margin:16px;
|
|
background-color: #76d7c4;
|
|
}
|
|
|
|
#banniere
|
|
{
|
|
font-size: 48px;
|
|
text-shadow: -1px -1px #9df, 1px 1px #49d, -3px 0 4px #000;
|
|
font-family:"Segoe print", Arial, Helvetica, sans-serif;
|
|
color:#6bf;
|
|
padding:24px 32px 32px 32px;
|
|
font-weight:lighter;
|
|
box-shadow:2px 2px 6px #888;
|
|
text-align:center;
|
|
display:block;
|
|
line-height:150px;
|
|
background-image:url(images/background-h1-wide.jpg);
|
|
}
|
|
|
|
/* faire le choix de la couleur en HTML : http://htmlcolorcodes.com/fr/*/
|
|
body{
|
|
background-color: #f7f9f9;
|
|
}
|
|
|
|
|
|
table tr:nth-child(odd) td
|
|
{
|
|
background-color: #E8E8FF;
|
|
}
|
|
|
|
h2, h3 {
|
|
background-color: gray;
|
|
color: navy;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
ul,ol{
|
|
background-color: #1abc9c;
|
|
display : table;
|
|
} |