Skip to content

Commit

Permalink
add project
Browse files Browse the repository at this point in the history
  • Loading branch information
58137 committed Sep 21, 2023
0 parents commit f133006
Show file tree
Hide file tree
Showing 15 changed files with 16,957 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.vscode/
38 changes: 38 additions & 0 deletions A propos.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/A propos.css">
<title>A propos de ce site</title>
</head>
<body>
<header>
<h1>À propos de de ce site</h1>
</header>

<aside>
<p><a href="index.html">Accueil</a></p>
<p><a href="description.html">L'IMC</a></p>
<p><a href="A propos.html">A propos de ce site</a></p>
</aside>

<main>
<h2>Note de l'auteur</h2>
<div>Ce site a été réaliser par Florian Essomba pour un projet dans le cadre du cours de WEBG2.
Entièrement conçue en HTML - JAVASCRIPT - CSS.
Il sert à calculer son IMC par rapport à son poids et sa taille
et fournir quelque informations par rapport à l'imc.
Pour plus d'informations vous pouvez lire l'article <a href="https://www.passeportsante.net/fr/Nutrition/Regimes/Fiche.aspx?doc=IMC" title="IMC">IMC</a>
.</div>
</main>

<footer>
<p>Matrricules<br>58137</p>
<p>Nom<br>Essomba</p>
<p>Prénom<br>Florian</p>
<p>Groupe<br>B113</p>
<p>Professeur<br>SRE</p>
</footer>
</body>
</html>
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Calcul-IMC

**FR**

Ce projet a été réalisé dans le cadre de mon cours de WEBG2. Il s'agit d'un site web permettant de calculer l'Indice de Masse Corporelle (IMC) écrit en javascript/html/css.


**ENG**

This project was created as part of my WEBG2 course. It is a website for calculating Body Mass Index (BMI) written in JavaScript/HTML/CSS.
32 changes: 32 additions & 0 deletions css/A propos.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
aside a{
text-decoration: none;
}

header{
grid-area: header;
}

aside{
grid-area: aside;
min-width: 150px;
background-color: whitesmoke;
}

main{
grid-area: main;
background-color: rgb(245, 247, 247);
padding-bottom: 80%;
min-width: 680px;
}

footer{
grid-area: footer;
}

body{
display: grid;
grid-template-areas:
'header header'
'aside main'
'footer footer';
}
Loading

0 comments on commit f133006

Please sign in to comment.