-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
79 lines (78 loc) · 3.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="contact.css">
</head>
<body>
<header class="nav-open">
<div id="branding">
<h1>Joseph</h1>
</div>
<nav class="main-nav">
<ul class="list">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html" class="header-active">Contact</a></li>
</ul>
</nav>
</header>
<div>
<h1 class="h1">About Us</h1>
<p id="p">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Dolore labore eos nostrum nesciunt dolores ipsam dignissimos repellat.</p>
</div>
<div class="container">
<div class="adress">
<div class="text">
<svg xmlns="http://www.w3.org/2000/svg" class="icon" height="24" viewBox="0 -960 960 960" width="24"><path d="M480-480q33 0 56.5-23.5T560-560q0-33-23.5-56.5T480-640q-33 0-56.5 23.5T400-560q0 33 23.5 56.5T480-480Zm0 294q122-112 181-203.5T720-552q0-109-69.5-178.5T480-800q-101 0-170.5 69.5T240-552q0 71 59 162.5T480-186Zm0 106Q319-217 239.5-334.5T160-552q0-150 96.5-239T480-880q127 0 223.5 89T800-552q0 100-79.5 217.5T480-80Zm0-480Z"/></svg>
<h3>Address</h3>
<p>Kigali-Nyamirambo Kt St</p>
</div>
<div class="text">
<svg xmlns="http://www.w3.org/2000/svg" class="icon" height="24" viewBox="0 -960 960 960" width="24"><path d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm320-280L160-640v400h640v-400L480-440Zm0-80 320-200H160l320 200ZM160-640v-80 480-400Z"/></svg>
<h3>Email</h3>
<p>[email protected]</p>
</div>
<div class="text">
<svg xmlns="http://www.w3.org/2000/svg" class="icon" height="24" viewBox="0 -960 960 960" width="24"><path d="M760-480q0-117-81.5-198.5T480-760v-80q75 0 140.5 28.5t114 77q48.5 48.5 77 114T840-480h-80Zm-160 0q0-50-35-85t-85-35v-80q83 0 141.5 58.5T680-480h-80Zm198 360q-125 0-247-54.5T329-329Q229-429 174.5-551T120-798q0-18 12-30t30-12h162q14 0 25 9.5t13 22.5l26 140q2 16-1 27t-11 19l-97 98q20 37 47.5 71.5T387-386q31 31 65 57.5t72 48.5l94-94q9-9 23.5-13.5T670-390l138 28q14 4 23 14.5t9 23.5v162q0 18-12 30t-30 12ZM241-600l66-66-17-94h-89q5 41 14 81t26 79Zm358 358q39 17 79.5 27t81.5 13v-88l-94-19-67 67ZM241-600Zm358 358Z"/></svg>
<h3>Phone</h3>
<p>+250798800604</p>
</div>
</div>
<form action="" class="form">
<h2>Leave Message</h2>
<div class="input-box">
<input type="text" required="required">
<span>Your Name</span>
</div>
<div class="input-box">
<input type="text" required="required">
<span>Phone Number</span>
</div>
<div class="input-box">
<input type="text" required="required">
<span>Your Email</span>
</div>
<div>
<textarea required="required"></textarea>
<span>Type Your Message</span>
</div>
<div>
<input type="submit" value="send">
</div>
</form>
</div>
<footer>
<h4>©Software Developer Copyright 2024</h4>
<div class="socialicons">
<a href=""><i class="fa-brands fa-facebook"></i></a>
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-instagram"></i></a>
<a href=""><i class="fa-brands fa-youtube"></i></a>
</div>
</footer>
</body>
</html>