Public Access
5
0

Ajout + Update : Commentaire de crédit dans les fichiers html et css

This commit is contained in:
2025-11-30 23:36:44 -05:00
parent b45ea05c09
commit a3f1d8857c
14 changed files with 103 additions and 16 deletions

View File

@@ -1,3 +1,9 @@
<!-- /**********************************************************/
/* Fichier : aPropos.html */
/* Titre : À propos */
/* Auteur : © Stanislas Royal, Cégep de Sherbrooke */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">

View File

@@ -1,3 +1,9 @@
<!-- /**********************************************************/
/* Fichier : armures.html */
/* Titre : Armures */
/* Auteur : © Andres David Herrera Escorcia, Cégep de Sherbrooke */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">
@@ -7,7 +13,7 @@
<link rel="icon" href="images/F4vicon.ico"> <link rel="icon" href="images/F4vicon.ico">
<link rel="stylesheet" href="css/style.css"> <link rel="stylesheet" href="css/style.css">
<script src="js/script.js"></script> <script src="js/script.js"></script>
<title>Warframes</title> <title>Armures</title>
</head> </head>
<body> <body>

View File

@@ -1,3 +1,9 @@
<!-- /**********************************************************/
/* Fichier : credits.html */
/* Titre : Crédits */
/* Auteur : © Jérémy Hébert, Cégep de Sherbrooke */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">

View File

@@ -1,10 +1,14 @@
/****************************/
/* FICHIER: style.css */
/* AUTEURS: Léa Dezothez, Jérémy Hébert, Andres David Herrera Escorcia et Stanislas Royal */
/****************************/
@charset "UTF-8"; @charset "UTF-8";
/* La feuille de style est encodée en UTF-8 */ /* La feuille de style est encodée en UTF-8 */
/****************************/ /****************************/
/* PAGE: Tous */ /* PAGE: Style commun a l'ensemble des pages du projet */
/* AUTEUR: Tous */ /* AUTEUR: Léa Dezothez, Jérémy Hébert, Andres David Herrera Escorcia et Stanislas Royal */
/* Nav + footer: Jérémy */ /* Nav + footer: Jérémy Hébert */
/****************************/ /****************************/
* { * {
margin: 0; margin: 0;
@@ -139,7 +143,7 @@ footer a:hover {
/****************************/ /****************************/
/* PAGE: Accueil */ /* PAGE: Accueil */
/* AUTEUR: Léa */ /* AUTEUR: Léa Dezothez */
/****************************/ /****************************/
.accueil { .accueil {
color: #ffefe5; color: #ffefe5;
@@ -281,7 +285,7 @@ footer a:hover {
/****************************/ /****************************/
/* PAGE: à Propos */ /* PAGE: à Propos */
/* AUTEUR: Stanislas */ /* AUTEUR: Stanislas Royal */
/****************************/ /****************************/
.aPropos { .aPropos {
background-color: rgb(99, 241, 99); background-color: rgb(99, 241, 99);
@@ -396,7 +400,7 @@ Couleur texte : #FFEFE5
/****************************/ /****************************/
/* PAGE: L'équipe */ /* PAGE: L'équipe */
/* AUTEUR: Jérémy */ /* AUTEUR: Jérémy Hébert */
/****************************/ /****************************/
.team { .team {
background: #13172c center; background: #13172c center;
@@ -506,7 +510,7 @@ Couleur texte : #FFEFE5
/****************************/ /****************************/
/* PAGE: Histoire de DE */ /* PAGE: Histoire de DE */
/* AUTEUR: Jérémy */ /* AUTEUR: Jérémy Hébert */
/****************************/ /****************************/
.histoire { .histoire {
background: #13172c center; background: #13172c center;
@@ -644,7 +648,7 @@ Couleur texte : #FFEFE5
/**************************************/ /**************************************/
/* PAGE: Univers Sci-fi et sous-pages */ /* PAGE: Univers Sci-fi et sous-pages */
/* AUTEUR: Léa */ /* AUTEUR: Léa Dezothez */
/**************************************/ /**************************************/
.lore:not(footer) { .lore:not(footer) {
background-color: #13172c; background-color: #13172c;
@@ -886,7 +890,7 @@ Couleur texte : #FFEFE5
/****************************/ /****************************/
/* PAGE: Missions */ /* PAGE: Missions */
/* AUTEUR: Stanislas */ /* AUTEUR: Stanislas Royal */
/****************************/ /****************************/
.missions { .missions {
background-color: rgb(43, 189, 226); background-color: rgb(43, 189, 226);
@@ -894,7 +898,7 @@ Couleur texte : #FFEFE5
/****************************/ /****************************/
/* PAGE: Warframes */ /* PAGE: Warframes */
/* AUTEUR: Andres */ /* AUTEUR: Andres David Herrera Escorcia */
/****************************/ /****************************/
.armures { .armures {
max-width: 100%; max-width: 100%;
@@ -1084,7 +1088,7 @@ Couleur texte : #FFEFE5
/****************************/ /****************************/
/* PAGE: Crédits */ /* PAGE: Crédits */
/* AUTEUR: Jeremy */ /* AUTEUR: Jérémy Hébert */
/****************************/ /****************************/
.credits { .credits {
background: #C19F8A center; background: #C19F8A center;
@@ -1187,8 +1191,8 @@ Couleur texte : #FFEFE5
} }
/****************************/ /****************************/
/* PAGE: Reponse */ /* PAGE: Merci */
/* AUTEUR: Stanislas & Jeremy */ /* AUTEUR: Jérémy Hébert */
/****************************/ /****************************/
.reponse { .reponse {
background: #C19F8A url("../images/ImagesReponse/Merci.png") center; background: #C19F8A url("../images/ImagesReponse/Merci.png") center;

View File

@@ -1,3 +1,9 @@
<!-- /**********************************************************/
/* Fichier : histoire.html */
/* Titre : Histoire de DE */
/* Auteur : © Jérémy Hébert, Cégep de Sherbrooke */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">

View File

@@ -1,3 +1,9 @@
<!-- /**********************************************************/
/* Fichier : index.html */
/* Titre : Page d'accueil */
/* Auteur : © Léa Dezothez, Cégep de Sherbrooke */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">

View File

@@ -1,3 +1,9 @@
<!-- /**********************************************************/
/* Fichier : lore.html */
/* Titre : Univers Sci-fi */
/* Auteur : © Léa Dezothez, Cégep de Sherbrooke */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">

View File

@@ -1,3 +1,9 @@
<!-- /**********************************************************/
/* Fichier : missions.html */
/* Titre : Missions */
/* Auteur : © Stanislas Royal, Cégep de Sherbrooke */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">

View File

@@ -1,3 +1,10 @@
<!-- /**********************************************************/
/* Fichier : reponse.html */
/* Titre : Merci */
/* Auteur : © Jérémy Hébert, Cégep de Sherbrooke */
/* Description : Page renvoyé après la soumission du formulaire */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">
@@ -7,7 +14,7 @@
<link rel="icon" href="images/F4vicon.ico"> <link rel="icon" href="images/F4vicon.ico">
<link rel="stylesheet" href="css/style.css"> <link rel="stylesheet" href="css/style.css">
<script src="js/script.js"></script> <script src="js/script.js"></script>
<title>Crédits</title> <title>Merci</title>
</head> </head>
<body> <body>

View File

@@ -1,3 +1,10 @@
<!-- /**********************************************************/
/* Fichier : sousPageLore1.html */
/* Titre : Arc 1 */
/* Auteur : © Léa Dezothez, Cégep de Sherbrooke */
/* Description : Sous-page pour l'Univers Sci-fi */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">

View File

@@ -1,3 +1,10 @@
<!-- /**********************************************************/
/* Fichier : sousPageLore2.html */
/* Titre : Arc 2 */
/* Auteur : © Léa Dezothez, Cégep de Sherbrooke */
/* Description : Sous-page pour l'Univers Sci-fi */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">

View File

@@ -1,3 +1,10 @@
<!-- /**********************************************************/
/* Fichier : sousPageLore3.html */
/* Titre : Arc 3 */
/* Auteur : © Léa Dezothez, Cégep de Sherbrooke */
/* Description : Sous-page pour l'Univers Sci-fi */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">

View File

@@ -1,3 +1,10 @@
<!-- /**********************************************************/
/* Fichier : sousPageLore4.html */
/* Titre : Arc 4 */
/* Auteur : © Léa Dezothez, Cégep de Sherbrooke */
/* Description : Sous-page pour l'Univers Sci-fi */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">

View File

@@ -1,3 +1,9 @@
<!-- /**********************************************************/
/* Fichier : team.html */
/* Titre : L'équipe */
/* Auteur : © Jérémy Hébert, Cégep de Sherbrooke */
/*************************************************************-->
<!DOCTYPE html> <!DOCTYPE html>
<html lang="fr"> <html lang="fr">