-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
152 lines (132 loc) · 3.79 KB
/
Contact.html
File metadata and controls
152 lines (132 loc) · 3.79 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #3a0ecb;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
}
main {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #f4f4f4;
border-radius: 35px;
border-style:solid;
border-color: #2f0bc2;
box-shadow: 8px 10px 7px rgba(21, 14, 235, 0.3);
}
h2 {
margin-top: 0;
}
p {
margin-bottom: 20px;
}
.contact-form {
display: flex;
flex-direction: column;
}
.contact-form label {
font-weight: bold;
margin-bottom: 5px;
}
.contact-form input,
.contact-form textarea {
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}
.contact-form button {
padding: 10px 20px;
background-color: #3213e1;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.social-media {
margin-top: 20px;
}
.social-media ul {
display: flex;
justify-content: center;
list-style-type: none;
padding: 0;
}
.social-media li {
margin-right: 10px;
}
.social-media a {
display: inline-block;
width: 40px;
height: 30px;
background-color: #2f0bc2;
color: #fff;
text-align: center;
line-height: 40px;
border-radius: 50%;
text-decoration: none;
}
.social-icons {
list-style-type: none;
padding: 0;
}
<!--New-->
.social-icons li {
display: inline-block;
margin-right: 10px;
}
.social-icons a {
display: inline-block;
padding: 10px;
background-color: #1809ee;
color: #fff;
text-decoration: none;
border-radius: 50%;
}
</style>
</head>
<body>
<header>
<h1>SEAN MAVHIMA</h1>
<p>Network Engineer</p>
</header>
<main>
<h2>Contact Me</h2>
<div class="contact-form">
<label for="name">Name</label>
<input type="text" id="name" placeholder="Enter your name">
<label for="email">Email</label>
<input type="email" id="email" placeholder="Enter your email">
<label for="message">Message</label>
<textarea id="message" placeholder="Enter your message"></textarea>
<button type="submit">Send Message</button>
</div>
<div class="social-media">
<h3>Connect with me on social media</h3>
<ul class="social-icons">
<li><a href="https://www.facebook.com/sean.mavhima.50/" target="_blank"><i class="fab fa-facebook"></i></a></li>
<li><a href="https://www.linkedin.com/in/sean-mavhima-304158266?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BNd%2FaCiySQSOEcmjv%2BwZy6g%3D%3D/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/SeanMavhima/SeanMavhima" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://twitter.com/MavhimaSean/" target="=_blank"><i class="fab fa-twitter"></i></a></li>
<li><a href="https://wa.me/250798974369" target="=_blank"><i class="fab fa-whatsapp"></i></a></li>
</ul>
</div>
</main>
</body>
</html>