-
Notifications
You must be signed in to change notification settings - Fork 37
/
contact.html
153 lines (148 loc) · 5.71 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
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
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link
rel="stylesheet"
href="./contact.css" />
<!--Linking Google Fonts-->
<link
rel="preconnect"
href="https://fonts.googleapis.com" />
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Young+Serif&display=swap"
rel="stylesheet" />
<!-- Linking BootStrap -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous" />
<!-- Linking Script -->
<script
defer
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<link
rel="stylesheet"
href="./styles.css" />
<title>ContactUs | SocialHub</title>
</head>
<body>
<section>
<header>
<nav
id="mainNavbar"
class="navbar navbar-expand-lg navbar-light fixed-top">
<a
class="navbar-brand"
href="./"
>Social Hub</a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse"
id="navbarNavAltMarkup">
<div class="navbar-nav">
<a
class="nav-item nav-link"
href="index.html"
>Home</a
>
<a
class="nav-item nav-link"
href="about.html">
About</a
>
<a
class="nav-item nav-link"
href="contact.html"
>Contact</a
>
</div>
</div>
</nav>
</header>
</section>
<div class="contact">
<main>
<h1 class="heading">Contact Us:</h1>
<div class="contactinfo">
<form
action="https://formspree.io/f/mrgwrjrz"
method="POST">
<div class="form-group">
<label for="name">Your Name:</label>
<input
type="text"
id="name"
name="name"
required />
</div>
<div class="form-group">
<label for="email">Your Email:</label>
<input
type="email"
id="email"
name="email"
required />
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea
id="message"
name="message"
rows="6"
required></textarea>
</div>
<div class="form-group">
<button type="submit">Send Message</button>
</div>
</form>
</div>
</main>
</div>
<footer>
<div class="footer-content">
<h3>SocialHub</h3>
<p>
Connecting Friends and Family through Personalized About
Pages.
</p>
<div class="socials">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-youtube"></i></a>
<a href="#"><i class="fa fa-linkedin-square"></i></a>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 SocialHub. All rights reserved.</p>
</div>
</footer>
</body>
</html>