-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
79 lines (74 loc) · 3.3 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">
<meta name="description" content="Hire Shyaka Chaste - Web Developer, Event Planner, Event Coordinator">
<title>Hire Me - Shyaka Chaste</title>
<link rel="shortcut icon" href="images/mylogo.png" type="image/x-icon">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/hire.css">
<link rel="stylesheet" href="styles/footer.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar">
<div class="navbar-brand">
<a href="index.html"><img src="images/mylogo.png" alt="Shyaka Chaste Logo" class="logo"></a>
</div>
<div class="navbar-toggle" id="mobile-menu">
<i class="fas fa-bars open-icon"></i>
<i class="fas fa-times close-icon"></i>
</div>
<ul class="navbar-menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="mywork.html">My Work</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="contact.html">Contact Me</a></li>
</ul>
</nav>
</header>
<section class="hire-me">
<div class="container">
<h1>Contact Me</h1>
<form id="hire-form">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="contact">Contact Info:</label>
<input type="text" id="contact" name="contact" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
</div>
<button type="submit">Send</button>
</form>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-social">
<div class="social-icons">
<a href="https://www.linkedin.com/in/shyakachaste" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/shyakachaste" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://x.com/ChasteShyaka" target="_blank"><i class="fab fa-x-twitter"></i></a>
<a href="https://www.instagram.com/iamchaste_" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Shyaka Chaste. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<script src="scripts/contact.js"></script>
<script src="scripts/scripts.js"></script>
<script src="https://kit.fontawesome.com/db3392cfd6.js" crossorigin="anonymous"></script>
</body>
</html>