-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
87 lines (75 loc) · 2.89 KB
/
contact.html
File metadata and controls
87 lines (75 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title> Responsive Contact Us Form | InterSTEM </title>
<link rel="stylesheet" href="css/contact_us.css">
<!-- Fontawesome CDN Link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C4NP4XRMJF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-C4NP4XRMJF');
</script>
</head>
<body>
<div class="container">
<div class="content">
<div class="left-side">
<div class="address details">
<!-- <i class="fas fa-map-marker-alt"></i> -->
<div class="topic" style="font-weight: bold">Contact Us | InterSTEM</div>
</div>
<div class="phone details">
<!-- <i class="fas fa-phone-alt"></i> -->
<div class="topic">Join us</div>
<p>Message us for the Discord link to join InterSTEM! And be sure to follow us on Instagram @inter.stem</p>
</div>
<div class="email details">
<i class="fas fa-envelope"></i>
<div class="topic">Email</div>
<div class="text-one">interstemplatform@gmail.com</div>
</div>
</div>
<div class="right-side">
<div class="topic-text">Send us a message!</div>
<p>If you have any questions, you can send us message from here. It's our pleasure to help you! :)</p>
<!-- <form action="https://formkeep.com/f/801cb0eabe05"
accept-charset="UTF-8"
enctype="multipart/form-data"
method="POST"> -->
<form action="https://formkeep.com/f/38774a8a6c16"
accept-charset="UTF-8"
enctype="multipart/form-data"
method="POST">
<div class="input-box">
<label for="Name" >Enter your name</label>
<div class="fcf-input-group">
<input type="text" id="Name" name="Name" required>
</div>
</div>
<div class="input-box">
<label for="Email" >Enter your email</label>
<div class="fcf-input-group">
<input type="email" id="Email" name="Email" required>
</div>
</div>
<div class="input-box message-box">
<label for="Message">Enter your message</label>
<div class="fcf-input-group">
<textarea id="Message" name="Message"rows="6" maxlength="3000" required></textarea>
</div>
</div>
<div class="button">
<input type="submit" class="button" value="Send Form" name="submit">
</div>
</form>
</div>
</div>
</div>
</body>
</html>