-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
130 lines (113 loc) · 4.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- CSS files-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<link rel="stylesheet" href="assets/css/styleContact.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<title>Qawam</title>
<!-- font file -->
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap"
rel="stylesheet" />
<!-- add favicon link -->
<link rel="icon" href="assets/images/favicon.png" type="images/favicon.png" />
</head>
<body>
<section class="contact">
<div class="logo">
<a href="index.html">
<img src="assets/images/white-logo.png" alt="logo" />
</a>
</div>
<div class="main-content">
<div class="row">
<div class="col-xl-5 col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="getin-touch">
<form autocomplete="off" action="https://formsubmit.co/c2c0d18b8b9437825b64dd4c5da3811d" method="POST">
<h3 class="title">Get in touch</h3>
<div class="form-group position-relative">
<label for="formName" class="d-block">
<i class="icon fa fa-user"></i>
</label>
<input type="text" name="name" id="formName" class="form-control" placeholder="Name" required />
</div>
<!-- E-mail -->
<div class="form-group position-relative">
<label for="formEmail" class="d-block">
<i class="icon fa-regular fa-envelope"></i>
</label>
<input type="email" name="email" id="formEmail" class="form-control" placeholder="E-mail" required />
</div>
<!-- Phone -->
<div class="form-group position-relative">
<label for="formPhone" class="d-block">
<i class="icon fa fa-phone"></i>
</label>
<input type="tel" id="formPhone" name="phone" class="form-control" placeholder="Phone" />
</div>
<!-- Subject -->
<div class="form-group position-relative">
<label for="Subject" class="d-block">
<i class="icon fa-solid fa-pen-nib"></i>
</label>
<input type="Subject" id="Subject" name="subject" class="form-control" placeholder="Subject" required />
</div>
<!-- Message -->
<div class="form-group message">
<textarea id="formMessage" name="message" class="form-control" rows="7" placeholder="Message"
required></textarea>
</div>
<!-- disable recaptcha -->
<input type="hidden" name="_captcha" value="false" />
<!-- auto response -->
<input type="hidden" name="_autoresponse"
value="Thanks for your message! We'll get back to as soon as possible" />
<!-- Submit btn -->
<div>
<ul>
<li>
<button id="submit_button" type="submit" class="btn">
Send
</button>
</li>
<li>
<a href="https://www.instagram.com/qawam_info/" target="_blank"><i class="fa fa-instagram"></i></a>
</li>
<li>
<a href="https://twitter.com/qawam_info" target="_blank"><i class="fa fa-twitter"></i></a>
</li>
<li>
<a href="https://www.facebook.com/Qawam-111943707961859" target="_blank"><i
class="fa fa-facebook"></i></a>
</li>
<li>
<a href="https://www.linkedin.com/company/qawam" target="_blank"><i class="fa fa-linkedin"></i></a>
</li>
</ul>
</div>
</form>
<div class="back-home">
<a href="index.html">
<i class="fa-solid fa-angle-left"> Back</i>
</a>
</div>
</div>
</div>
<div class="col-xl-7 col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div id="contact-img">
<img id="front-device" src="assets/images/front-device.png" alt="qawam device img" />
</div>
</div>
</div>
</div>
</section>
<!-- font awsome -->
<script src="https://kit.fontawesome.com/f838142837.js" crossorigin="anonymous"></script>
<!-- custom js for 3D hovering -->
<script src="assets/js/scriptContact.js"></script>
</body>
</html>