1<!DOCTYPE HTML>
2<html lang="en-US">
3 <head>
4 <meta charset="UTF-8">
5 <meta http-equiv="refresh" content="0; url=http://example.com">
6 <script type="text/javascript">
7 window.location.href = "http://example.com"
8 </script>
9 <title>Page Redirection</title>
10 </head>
11 <body>
12 <!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
13 If you are not redirected automatically, follow this <a href='http://example.com'>link to example</a>.
14 </body>
15</html>
1<!DOCTYPE html>
2
3 <head>
4 <meta charset="utf-8">
5 <title></title>
6 <link rel="stylesheet" type="text/css" href="design.css">
7 </head>
8 <body>
9 <form action ="traitement.php" method ="post/get">
10 <p>
11 Remplissez ce formulaire:<br>
12 Nom:
13
14 <input type="text" name="prenom">
15 </p>
16
17 <p>
18 Prénom:
19
20 <input type="text" name="Nom">
21 </p>
22
23 <p>
24 Nom de la sociétée:
25 <input type="text" name="Nom de ma sociétée"> <br>
26 </p>
27
28 <select name="requete">
29 <option value= "Prendre contacte">Prendre contacte</option>
30 <option value= "embaucher moi">embaucher moi</option>
31 <option value="j'ai besoin d'un stagiaire">j'ai besoin d'un stagiaire<option>
32 </select>
33
34
35
36 <label>Votre message:</label><br>
37 <textarea></textarea> <br>
38
39 </form>
40
41 <section>
42 </section>
43
44 <form>
45 <label for="Quelle est votre CB?">
46 Quelle est votre CB?
47 </label>
48 <input type="text" list="cartes" name="cartes">
49 <datalist id="cartes">
50 <option value= "GOLD">Gold</option>
51 <option value= "Master card">Master card</option>
52 <option value= "Visa classique">Visa classique</option>
53 </datalist>
54 </form>
55
56 </body>
57
1<form action="/action.php">
2 <label for="fname">First name:</label><br>
3 <input type="text" id="fname" value="Mike"><br><br>
4 <label for="lname">Last name:</label><br>
5 <input type="text" id="lname" value="Walker"><br><br>
6 <input type="submit" value="Submit">
7</form>
8
9Html By Duco Defiant Dogfish on Feb 11 2020
10<form action="/action_page.php">
11 First name:<br>
12 <input type="text" name="firstname" value="Mickey"><br>
13
14 Last name:<br>
15 <input type="text" name="lastname" value="Mouse"><br><br>
16
17 <input type="submit" value="Submit">
18</form>