tp2
This commit is contained in:
3
TP/TP2/ex1/css/style.css
Normal file
3
TP/TP2/ex1/css/style.css
Normal file
@@ -0,0 +1,3 @@
|
||||
form button{
|
||||
float:right;
|
||||
}
|
42
TP/TP2/ex1/ex1.html
Normal file
42
TP/TP2/ex1/ex1.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="stylesheet" href="http://www.iut-fbleau.fr/css/tacit.css">
|
||||
<link rel="stylesheet" href="./css/style.css">
|
||||
<title>Exercice 1</title>
|
||||
|
||||
</head>
|
||||
<body container>
|
||||
<div grid>
|
||||
<div column="8 +2">
|
||||
<h3> Exercice 1</h3>
|
||||
<form action="ex1.php" method="POST">
|
||||
<fieldset>
|
||||
<legend>Qui êtes-vous ?</legend>
|
||||
<!-- Text input-->
|
||||
<label>Nom<br>
|
||||
<input name="nom" placeholder="nom" type="text">
|
||||
</label>
|
||||
<!-- Text input-->
|
||||
<label >Prénom<br>
|
||||
<input name="prenom" placeholder="prénom" type="text">
|
||||
</label>
|
||||
<!-- Multiple Radios -->
|
||||
<label class="control-label" for="radios">Sexe</label>
|
||||
<label>
|
||||
<input name="sexe" value="Homme" checked="checked" type="radio">
|
||||
Homme
|
||||
</label>
|
||||
<label >
|
||||
<input name="sexe" value="Femme" type="radio">
|
||||
Femme
|
||||
</label>
|
||||
<!-- Button -->
|
||||
<button type="submit">Envoyer</button>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
14
TP/TP2/ex1/ex1.php
Normal file
14
TP/TP2/ex1/ex1.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<link rel="stylesheet" href="http://www.iut-fbleau.fr/css/tacit.css">
|
||||
<link rel="stylesheet" href="./css/style.css">
|
||||
<meta charset="UTF-8" />
|
||||
<title></title>
|
||||
</head>
|
||||
<body container>
|
||||
<h3>
|
||||
<!-- À compléter -->
|
||||
</h3>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user