-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
44 lines (42 loc) · 1.28 KB
/
contacts.html
File metadata and controls
44 lines (42 loc) · 1.28 KB
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
<!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">
<link rel="stylesheet" href="mainstyles.css">
<title>Contacts</title>
</head>
<body>
<header>
<h1>Contact Us</h1>
</header>
<nav>
<a href="index.html">Profile</a>
<a href="goals.html">Goals/Achievements</a>
<a href="contacts.html">Contacts</a>
</nav>
<div class="container"></div>
<p>Feel free and get in touch with us!!!!</p>
<ul>
<li>Phone: +256781921013</li>
<li>Whatsap: +256751609902</li>
<li>Email: hamiduaarafat2@gmail.com</li>
<li>Email: hamiduaarafat22@gmail.com</li>
<li>Address: 123 Main St, BUGEMA, UGANDA</li>
</ul>
<div class="contact-form">
<form>
<h2> Send Feedback</h2>
<input type="text" class="input-field" placeholder="Name" required>
<input type="email" class="input-field" placeholder="Email" required>
<textarea class="input-field" placeholder="Message" required></textarea>
<button class="submit-btn">Send Message</button>
</form>
</div>
</div>
<footer class="footer">
<p>© EL FATI 2024</p>
</footer>
</body>
</html>