forked from Coders-Evoke-Community/CodersEvoke_website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
97 lines (91 loc) · 2.83 KB
/
Copy pathcontact.html
File metadata and controls
97 lines (91 loc) · 2.83 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
<!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" />
<!-- attach css files here -->
<link rel="stylesheet" href="assets/css/contact.css" />
<title>CODERS EVOKE</title>
<!-- emailjs cdn -->
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/emailjs-com@2/dist/email.min.js"
></script>
</head>
<body>
<!-- navigation bar for the page-->
<header class="header">
<div class="site-icon">
<a href="" class="logo"
><img class="image" src="assets/images/circle-cropped.png"
/></a>
</div>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"
><span class="navicon"></span
></label>
<ul class="menu">
<li><a href="#work">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="#contact">Opportunities</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="#contact">Team</a></li>
</ul>
</header>
<!-- including javascript files here-->
<script src="./js/contact.js"></script>
<script src="./js/script.js"></script>
<div class="container">
<div style="text-align: center">
<br />
<h1>Contact Us</h1>
<br />
<h3>Feel free to get in contact with us:</h3>
<br />
</div>
<div class="row">
<div class="column">
<img
src="assets/images/expertise.png"
style="width: 100%; object-fit: cover"
/>
</div>
<div class="column">
<form id="contact-form">
<!-- id of each form -->
<input type="hidden" name="contact_number" />
<label><b>Name</b></label>
<input type="text" name="name" placeholder="Your Name.." required />
<label><b>Email</b></label>
<input
type="email"
name="email"
placeholder="Your Email.."
required
/>
<label><b>Subject</b></label>
<input
type="text"
name="subject"
placeholder="Subject.."
required
/>
<label><b>Message</b></label>
<textarea
id="message"
name="message"
placeholder="Write Something.."
style="height: 170px"
required
></textarea>
<input type="submit" value="Submit" />
<!-- form submission status -->
<span id="status"></span>
</form>
</div>
</div>
</div>
</body>
</html>