Initial commit with existing project files

This commit is contained in:
2025-03-15 17:43:30 +01:00
parent 0e44affda6
commit 1aac0cf93a
4 changed files with 191 additions and 2 deletions

4
README.md Normal file → Executable file
View File

@@ -1,2 +1,2 @@
# tp-accessibilite-accessiweb
## AccessiWeb
Projet de groupe dans le cadre de ma formation CDA chez Human Booster

BIN
annexes/Consignes.pdf Executable file

Binary file not shown.

74
index.html Executable file
View File

@@ -0,0 +1,74 @@
<!DOCTYPE html> <!--version HTML 5-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!--tire lien google-->
<title>Inscription AccessiWeb 2025 : Un Web pour Tous</title>
<!--Description google-->
<meta name="description" content="description">
<!--Lien vers le fichier CSS-->
<link rel="stylesheet" href="style.css">
</head>
<header>
<nav>
<ul>
<li><a href="#">Accueil</a></li>
<li><a href="#programme">Programme</a></li>
<li><a href="#inscription">Inscription</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<body>
<form action="">
<h1>WEBINCLUSIF
<br>
<br> AccessiWeb 2025:
<br>
Un Web pour Tous
</h1>
<p>pour objectif de sensibiliser les développeurs, designers et
chefs de projet à l'importance de laccessibilité numérique.</p>
<p>Vendredi 5 avril 2025
<br>
Palais des congrès, Paris
<br>
Horaires: 9h - 17h
</p>
<div>
<label for="nom">Nom complet</label>
<input class="formulaire" type="text" name="nom" id="nom" placeholder="Entrez votre nom">
</div>
<div>
<label for="email">Adresse email </label>
<input class="formulaire" type="email" name="email" id="email" required>
</div>
<div>
<label for="tel">Téléphone</label>
<input class="formulaire" type="tel" name="tel" id="tel" pattern="[0-9](10)">
</div>
<div>
<label for="naissance">Date de naissance</label>
<input class="formulaire" type="date" name="naissance" id="naissance">
</div>
<div>
<div>
<input type="checkbox" name="cgv" id="cgv" required>
<label for="cgv">J'accepte les<a target="_blank" href="https://www.mozilla.org/fr/">
<u><strong class="strong">conditions générales</strong></u></label></a>
</div>
</div>
<input class="button" type="submit" value="Je m'inscris !">
</form>
</body>
<footer>
<p>&copy; 2025 AccessiWeb - Un Web pour Tous. Tous droits réservés.</p>
<p><a href="#mentions-legales">Mentions Légales</a> | <a href="#politique-confidentialite">Politique de
Confidentialité</a></p>
</footer>
</html>

115
style.css Executable file
View File

@@ -0,0 +1,115 @@
form {
max-width: 400px;
background-color: #404040;
border-radius: 20px;
margin: auto;
padding: 20px;
color: white;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
label {
display: inline-block;
min-width: 100px;
font-weight: bold;
max-width: 400px;
}
form div {
margin-bottom: 20px;
}
.button {
background-color: #061f5a;
text-transform: uppercase;
padding: 10px;
border-radius: 15px;
cursor: pointer;
padding: 10px;
width: 400px;
color: white;
}
.button:hover {
background-color: white;
color: black;
cursor: pointer;
border-style: groove;
transform: scale(1.07);
transition: transform 0.3s;
}
body {
background-color: white;
}
.strong {
color: #061f5a;
}
.plateforme {
display: block
}
.formulaire {
width: 400px;
height: 25px;
border-radius: 6px;
}
h1 {
text-align: center;
}
p {
text-align: center;
}
u {
color: #061f5a;
}
header,
footer {
background-color: #061f5a;
padding: 15px 0;
text-align: center;
width: 450px;
margin: auto;
border-radius: 20px;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
text-decoration: underline;
}
footer {
background-color: #404040;
color: white;
text-align: center;
padding: 15px 0;
margin-top: 20px;
}
footer a {
color: white;
text-decoration: underline;
}