-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
57 lines (55 loc) · 1.77 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ABOUT US</title>
<link href="style.css" rel="stylesheet"/>
</head>
<body class="wholeform">
<div class="nav1">
<nav class="link2">
<a href="blog.html">Blog</a>
<a href="form.html">Form</a>
<a href="about.html">About</a>
<a href="home.html">Home</a>
</nav>
</div>
<div class="final-form">
<div class="form1">
<img src="./images/formprofile.png" class="form-image"><br><br><br>
<P>Immaculate Nayiga</P>
<p>Home</p>
<p>Work</p>
<p>surport</p>
<p>Setting</p>
<p>sign out</p>
<p>sign in</p>
<button type="button"><b>SUBMIT</b></button>
</div>
<div class="form2">
<form>
<p><b>USER FORM</b></p>
<label for="N"> Full Name</label><br>
<input type="text" id="N" name="N"><br>
<label for="E">Email</label><br>
<input type="text" id="E" name="E"><br>
<label for="P">Phone</label><br>
<input type="text" id="P" name="P"><br>
<label for="A">Address</label><br>
<input type="text" id="A" name="A"><br>
<label for="G">Age</label><br>
<input type="text" id="G" name="G"><br>
<p>please share with us your skills inline with tec</p>
<textarea name="skill" rows="5" cols="10"></textarea><br>
<p>what are your qualifications for this tec industry</p>
<textarea name="Qualifications" rows="5" cols="10"></textarea>
<!-- <label for="S">Skill</label><br> -->
<!-- <input type="text" id="S" name="S"><br> -->
<!-- <label for="Q">Qualifications</label><br> -->
<!-- <input type="text" id="Q" name="Q"><br><br> -->
</form>
</div>
</div>
</body>
</html>