-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex7.html
39 lines (38 loc) · 1.58 KB
/
index7.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Formulaire</title>
<link href="./css/style7.css" rel="stylesheet">
</head>
<body>
<main>
<section>
<form class="#" action="index.html" method="post">
<h2>Fill Form</h2>
<fieldset>
<legend>Name</legend>
<label for="name">Enter Your Name </label>
<input type="text" name="nom" id="nom" placeholder="Enter your fullname here"/>
</fieldset>
<fieldset>
<legend>Email</legend>
<label for="email">Email Adress</label>
<input type="email" name="email" id="email" placeholder="Enter a valid email adress" >
</fieldset>
<fieldset>
<legend>Website</legend>
<label for="url">Website</label>
<input type="url" name="url" id="url" placeholder="Your website adress (eg: http://www.google.com)">
</fieldset>
<fieldset>
<legend>About you</legend>
<label for="about">About you</label>
<input type="text" name="about" id="about" placeholder="Say something about yourself">
</fieldset>
<input type="submit" value="Send this" />
</form>
</section>
</main>
</body>
</html>