Feat: crée les documents à reproduire pour le CSS

This commit is contained in:
2022-08-01 14:57:55 +02:00
parent 418e0bb537
commit cf1ec24968
24 changed files with 47 additions and 7 deletions

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -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>

View File

@@ -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;
}