Feat: crée les documents à reproduire pour le CSS
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="Author" content="">
|
||||
<link rel="stylesheet" type="text/css" href="style.css">
|
||||
<link rel="stylesheet" type="text/css" href="style_margin_padding.css">
|
||||
<title>Une belle page</title>
|
||||
</head>
|
||||
<body>
|
@@ -0,0 +1,31 @@
|
||||
header {
|
||||
background-color: magenta;
|
||||
border: 3px solid darkorchid;
|
||||
margin: 50px;
|
||||
}
|
||||
|
||||
nav {
|
||||
background-color: olive;
|
||||
border: 3px solid olivedrab;
|
||||
padding: 100px;
|
||||
}
|
||||
|
||||
section {
|
||||
background-color: red;
|
||||
border: 3px solid darkorange;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: cornsilk;
|
||||
border: 3px solid chocolate;
|
||||
margin-top: 40px;
|
||||
margin-left: 30%;
|
||||
margin-right: 30%;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
|
||||
img {
|
||||
width: 100px;
|
||||
}
|