-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
102 lines (101 loc) · 3.61 KB
/
about.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
97
98
99
100
101
102
<!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>Contacts</title>
</head>
<!--Navigation bar-->
<div class="navigation">
<h1></h1>
<nav>
<a href="index.html">Ian Githaiga</a>
<a href="Projects.html">Projects</a>
<a href="service.html">Service</a>
<a href="about.html">About</a>
<a href="blog.html">Blog</a>
<a href="Contacts.html">contacts</a>
<a href="">Resume</a>
</nav>
</div><hr>
<!--Hero/jumbotron section-->
<header>
<h1>Drop me a line.......</h1>
</header>
<main>
<!--MAIN PAGE CONTENT-->
<section>
<form action="">
<div>
<p><label for="Email text field">Email*</label></p>
<input type="text and number" id="email" name="email" />
</div>
<div>
<p><label for="Name text field">Name* </label></p>
<input type="text and number" name="name" id="name" />
</div>
<div>
<p><label for="subject text field">Subject*</label></p>
<input type="text and number" name="subject" id="subject">
</div>
<div>
<p><label for="Contact text field">Tel:</label>
<input type="number" name="contact" id="contact">
</div>
<div>
<p><label for="preffered means option">preffered means</label>
<input type="radio" id="Tel" name="preff_means" value="Tel">
<label for="Tel">Tel</label>
<input type="radio" id="Email" name="preff_means" value="Email">
<label for="Email">Email</label>
</p>
</div>
<div>
<p><label for="product dropdown list">product</label>
<select>
<option value="web">Web application</option>
<option value="mobile">Mobile application</option>
<option value="Desktop">Desktop application</option>
</select></p>
</div>
<div>
<p><label for="message">Your message: </label></p>
<p><textarea
name="message"
id="message"
cols="30"
rows="10">
</textarea>
</p>
</div>
<div>
<input type="checkbox" id="Subscription" name="Subscription"
checked>
<label for="Subscriptions">Subscribe to News & Offers</label>
</div>
<div>
<input type="submit" value="Send message" />
</div>
</form>
</section>
</main>
<hr>
<!--Footer section-->
<footer>
<ul>
<li><a href="https://maps.google.com/"> Github</a></li><i class="fa-brands fa-github"></i>
<li><a href="https://maps.google.com/"> Linkedln</a></li>
<li><a href="https://maps.google.com/"> Codepen</a></li>
<li>
<a href="https://accounts.google.com/b/0/AddMailService"> Mail</a>
</li>
</ul>
</footer>
<hr>
<body>
<p>This page is about Ian Githaiga.It was created on 2/22/2022.
All rights reserved to HIM.
</p>
</body>
</html>