init : articles varlog (migration depuis rsync)

This commit is contained in:
Cédrix
2026-05-15 10:37:48 +02:00
commit b0716911b3
5573 changed files with 107423 additions and 0 deletions
@@ -0,0 +1 @@
{"uuid":"81d594cb-295f-4cab-b333-975108afbdc8","slug":"creer-un-magazine-html-css","title":"HTML / CSS : Créer un magazine","author":"cedric@abonnel.fr","published":true,"published_at":"2023-02-28 20:02:45","created_at":"2023-02-28 20:02:45","updated_at":"2023-02-28 20:02:45","revisions":[],"cover":"","files_meta":[],"external_links":[],"seo_title":"","seo_description":"","og_image":"","category":"Informatique","content":"# HTML / CSS : Créer un magazine\n\nSuivez le cours en ligne depuis l'adresse https:*projects.raspberrypi.org/en/projects/magazine/\n\nLa réalisation s'effectue depuis le site https:*trinket.io/embed/html/cef5e64bc0\n\nCi-dessous le corrigé.\n\n```HTML\n<html>\n<head>\n\t<link rel=\"stylesheet\" href=\"style.css\">\n</head>\n<body>\n\n<h1>mon magazine</h1>\n<div class=\"column1\"></div>\n<div class=\"column2\">\n <div class=\"item\">\n <h2>Mignon le chatton !</h2>\n <img class=\"photo\" src=\"kitten.jpg\"/>\n </div>\n</div>\n\n</body>\n</html>\n```\n\n```CSS\nh1 {\n text-align: center;\n color: white;\n background: teal;\n padding: 5px;\n}\n\t\n\nbody {\n background: linear-gradient(to bottom right, lemnchiffon, white);\n padding: 15px;\n font-family: Carlito; \n}\n\n.column1 {\n width: 48%;\n float:left;\n}\n\n.column2 {\n width: 48%;\n float:right;\n}\n\nimg {\n max-width: 100%;\n}\n\n.photo {\n box-shadow: 4px 4px 4px gray;\n transform: rotate(10deg);\n}\n\n.item {\n padding: 10px;\n margin-bottom: 10px;\n border: 3px dashed teal;\n}\n\nh2 {\n color: white;\n background: teal;\n padding: 5px;\n margin: 0px 0px 10px 0px;\n box-shadow: 2px 2px 2px gray;\n text-align: center;\n}\n```","featured":false,"tags":[]}