-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojets.html
96 lines (79 loc) · 3.46 KB
/
projets.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Project form</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<header>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="index.html">
<img src="Images/logo.png" alt="My logo" height="50">
</a>
</div>
<div class="navbar-menu">
<a class="home-tab" href="index.html"> Home </a>
<a class="home-tab" href="contact.html"> Contact </a>
</div>
</nav>
</header>
<h1> Let's do a project ! </h1>
<form>
<table>
<tr class="pal">
<td class="peace"><label for="Name">Name</label></td>
<td class="war"><input type="text" value="Enter your name"></td>
</tr>
<tr>
<td class="peace"> <label for="Email">Email</label>
</td>
<td class="war"><input type="email" value="Enter your mail"></td>
</tr>
<tr>
<td class="peace"><label for="Name"> Where are you located? </label></td>
<td class="war"><select>
<option> West Africa </option> <br>
<option> East Africa </option> <br>
<option> South Africa </option> <br>
<option> North Africa </option> <br>
<option> Central Africa </option> <br>
<option> South Europa </option> <br>
<option> North Europa </option> <br>
<option> East Europa </option> <br>
<option> West Europa </option> <br>
<option> America </option> <br>
<option> Australia </option> <br>
</select></td>
</tr>
<tr>
<td class="peace"><label for=" Name ">Field of work</label></td>
<td class="war">
<input name="heure " type="radio"> <label for=" choice "> Business and entrepreneurship</label> <br>
<input name="heure " type="radio"> <label for=" choice "> Civic and community work </label> <br>
<input name="heure " type="radio"> <label for=" choice "> Public or gouvernment management </label></td> <br>
</tr>
<tr>
<td class="peace"><label for="Name"> Your projects is to </label></td>
<td class="war"><select>
<option> Create simple web site </option> <br>
<option> Create web mobile app </option> <br>
<option> Redesign of a simple website </option> <br>
<option> Create e-commerce web platform </option> <br>
<option> Other </option> <br>
</select></td>
</tr>
<tr>
<td class="peace"><label for=" msg ">Tell us more about your project </label></td>
<td class="war"> <textarea cols="30 " rows="5 "> here...
</textarea>
</td>
</tr>
</table>
<button type="submit "> Send </button>
</form>
</body>
</html>