-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
108 lines (105 loc) · 3.42 KB
/
contact.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
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="affordable and professional web design"/>
<meta name="keywords" content="web design, affordable web dsign, professional web design"/>
<meta name="author" content="Henry"/>
<title>SAYANET | Contact</title>
<link rel="stylesheet" href="styling.css"/>
<script src="https://kit.fontawesome.com/930e50fa88.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1> <span class="highlight">Henry</span> web design</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html" target="blank">about</a></li>
<li class="current"><a href="contact.html" target="blank">contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="contact">
<div class="content">
<h1 class="page-title">Contact SAYANET</h1>
<p>While we're good with smoke signals, there are simpler ways for us to get in touch and answer your questions. Help us help you!</p>
</div>
<div class="container">
<div class="contactInfo">
<div class="box">
<div class="text">
<h3>Address</h3>
<p>3552, Airview estate,<br>Kitengela,Nairobi,<br>Kenya</p>
</div>
</div>
<div class="box">
<div class="text">
<h3>Phone</h3>
<p>+254795051848<br>+254100616040</p>
</div>
</div>
<div class="box">
<div class="text">
<h3>Email</h3>
<p>henryemnesty@gmail.com</p>
</div>
</div>
</div>
<div class="contactform">
<form>
<h2>Send a message</h2>
<div class="inputbox">
<input type="text" name="" required="required">
<span>Full Name</span>
</div>
<div class="inputbox">
<input type="text" name="" required="required">
<span>Email</span>
</div>
<div class="inputbox">
<textarea required="required"></textarea>
<span>Enter your message</span>
</div>
<div class="inputbox">
<input type="submit" name="" value="send">
</div>
</form>
</div>
</div>
</section>
<footer>
<div class="wrapper">
<a href="https://www.instagram.com/henry_emnesty/">
<i class="fa-brands fa-instagram"></i>
</a>
</div>
<div class="wrapper">
<a href="https://twitter.com/Heneriko1">
<i class="fa-brands fa-twitter"></i>
</a>
</div>
<div class="wrapper">
<a href="https://www.linkedin.com/in/henry-emnesty-19a85122a/">
<i class="fa-brands fa-linkedin"></i>
</a>
</div>
<div class="wrapper">
<a href="https://github.com/HenrySaya">
<i class="fa-brands fa-github"></i>
</a>
</div>
<div class="wrapper">
<a href="https://wa.me/+254795051848">
<i class="fa-brands fa-whatsapp"></i>
</a>
</div>
<p>Henry Designs, Copyright © 2022</p>
</footer>
</body>
</html>