From 631dc3e40c5dffcc6dab2a78ee6752ca771eafa2 Mon Sep 17 00:00:00 2001 From: Marie Malarme Date: Thu, 25 Feb 2021 17:57:02 +0000 Subject: [PATCH] Subject exercise 1 "Skeleton" (HTML structure) --- subjects/skeleton/README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 subjects/skeleton/README.md diff --git a/subjects/skeleton/README.md b/subjects/skeleton/README.md new file mode 100644 index 00000000..f40788b9 --- /dev/null +++ b/subjects/skeleton/README.md @@ -0,0 +1,22 @@ +### Skeleton + +The first step to achieve in your quest is to conceive your being ; for that, 2 things have to be done: + +- set some parameters (`` tag) +- define the structure, or skeleton (`` tag) + +#### Parameters + +To create any project, some things need to be declared in the `index.html` file - those are not visible elements in your page, but things cannot work without them. +Set your page with [``](link) & [``](link) tags, and also put a [``](link) to name the entity you're going to create. + +#### Structure + +Now you have to define the skeleton of your future creation. +Remember this as a general rule for any further project you will start: a good way of setting up a project is to think about all the elements needed, organize and divide them in blocks. + +Let's define the first level of elements that your entity will be made of ; we're going to split it into 3 main chunks: the face, the upper body, and the lower body. + +Inside the `<body>` tag of your HTML file, create 3 divisions using `<section>` tags, putting the following text content inside for each: 'face', 'upper-body', 'lower-body'. + +If you open you `index.html` file in the browser, you should see those 3 texts appear on the screen.