Base du site

This commit is contained in:
Yoan Guerin
2025-12-04 22:28:51 +01:00
parent 1cda41740a
commit 6d9a250ef1
5 changed files with 207 additions and 0 deletions

65
html/index.html Normal file
View File

@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html lang="fr">
<!-- head pour l'onglet -->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Introduction aux Logiciels Libres</title>
<link rel="stylesheet" href="../style.css" />
<!-- body pour la page -->
</head>
<body>
<header>
<h1>Introduction aux Logiciels Libres</h1>
<nav>
<ul class="menu">
<li><a href="./index.html">Accueil </a></li>
<li><a href="./pokemon.html">Jeu Pokémon</a></li>
<li><a href="./partenaires.html">Partenaires</a></li>
<li><a href="./qcm.html">QCM</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Quest-ce quun logiciel libre ?</h2>
<p>
Un <strong>logiciel libre</strong> est un logiciel dont l'utilisateur dispose de
libertés essentielles : la liberté d'utiliser le programme, de l'étudier,
de le modifier, et de le redistribuer. Ces libertés garantissent un
contrôle total de lutilisateur sur la technologie quil utilise.
</p>
</section>
<section>
<h2>Et un logiciel propriétaire ?</h2>
<p>
Un <strong>logiciel propriétaire</strong> impose des restrictions : le code source
n'est pas accessible, la modification est interdite, et la distribution est
strictement contrôlée. Lutilisateur dépend entièrement de léditeur.
</p>
</section>
<section>
<h2>Pourquoi les logiciels libres sont importants</h2>
<p>
Les logiciels libres favorisent la transparence, l'indépendance
technologique, la durabilité et la collaboration. Ils permettent à chacun de
comprendre ce quun logiciel fait réellement et déviter les pratiques
intrusives ou injustes.
</p>
</section>
<section>
<h2>Pourquoi s'y intéresser ?</h2>
<p>
S'intéresser au logiciel libre, cest soutenir un modèle ouvert, respectueux
des utilisateurs et bénéfique pour la collectivité. Cela encourage un
environnement numérique plus sain et plus éthique.
</p>
</section>
</main>
</body>
</html>

24
html/partenaires.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jeu Pokémon</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<header>
<h1>Partenaires </h1>
<nav>
<ul class="menu">
<li><a href="./index.html">Accueil </a></li>
<li><a href="./pokemon.html">Jeu Pokémon</a></li>
<li><a href="./partenaires.html">Partenaires</a></li>
<li><a href="./qcm.html">QCM</a></li>
</ul>
</nav>
</header>
</body>
</html>

24
html/pokemon.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jeu Pokémon</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<header>
<h1>Jeu Pokémon</h1>
<nav>
<ul class="menu">
<li><a href="./index.html">Accueil </a></li>
<li><a href="./pokemon.html">Jeu Pokémon</a></li>
<li><a href="./partenaires.html">Partenaires</a></li>
<li><a href="./qcm.html">QCM</a></li>
</ul>
</nav>
</header>
</body>
</html>

24
html/qcm.html Normal file
View File

@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jeu Pokémon</title>
<link rel="stylesheet" href="../style.css">
</head>
<body>
<header>
<h1>QCM</h1>
<nav>
<ul class="menu">
<li><a href="./index.html">Accueil </a></li>
<li><a href="./pokemon.html">Jeu Pokémon</a></li>
<li><a href="./partenaires.html">Partenaires</a></li>
<li><a href="./qcm.html">QCM</a></li>
</ul>
</nav>
</header>
</body>
</html>

70
style.css Normal file
View File

@@ -0,0 +1,70 @@
/* Style simple et épuré pour le site d'introduction aux logiciels libres */
body {
margin: 0;
padding: 0;
font-family: system-ui, sans-serif;
line-height: 1.6;
background: #f5f5f5;
color: #222;
}
header {
background: #2c7a7b;
color: white;
padding: 1.5rem;
text-align: center;
}
main {
max-width: 800px;
margin: 2rem auto;
padding: 1rem;
}
section {
background: white;
padding: 1.2rem 1.5rem;
margin-bottom: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
h1, h2 {
margin-top: 0;
}
h2 {
color: #2c7a7b;
}
/* Barre du menu séparée du titre */
nav {
background: #256f70; /* Une nuance légèrement plus sombre */
padding: 0.6rem 0; /* Espacement vertical */
margin-top: 1rem; /* Séparation avec le titre */
border-radius: 6px; /* Légère forme arrondie */
}
/* Menu horizontal */
.menu {
list-style: none;
padding: 0;
margin: 0;
display: flex;
gap: 1.5rem;
justify-content: center;
}
.menu a {
color: white;
text-decoration: none;
font-weight: bold;
transition: opacity 0.2s;
}
.menu a:hover {
opacity: 0.65;
}