-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
65 lines (65 loc) · 3.03 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
<!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">
<title>Contact page</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
<link rel="stylesheet" href="style2.css">
</head>
<body>
<section id="section-wrapper">
<div class="box-wrapper">
<div class="info-wrap">
<h2 class="info-title">Contact Information</h2>
<h3 class="info-sub-title">Fill up the form and our Team will get back to you within 24 hours</h3>
<ul class="info-details">
<li>
<i class="fas fa-phone-alt"></i>
<span>Phone:</span> <a href="tel:+ 1235 2355 98">+91 1234567890</a>
</li>
<li>
<i class="fas fa-paper-plane"></i>
<span>Email:</span> <a href="mailto:info@yoursite.com">info@jobrecommender.com</a>
</li>
<li>
<i class="fas fa-globe"></i>
<span>Website:</span> <a href="#">jobrecommender.com</a>
</li>
</ul>
<ul class="social-icons">
<li><a href="#"><i class="fab fa-facebook"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-linkedin-in"></i></a></li>
</ul>
</div>
<div class="form-wrap">
<form action="#" method="POST">
<h2 class="form-title">Send us a message</h2>
<div class="form-fields">
<div class="form-group">
<input type="text" class="fname" placeholder="First Name">
</div>
<div class="form-group">
<input type="text" class="lname" placeholder="Last Name">
</div>
<div class="form-group">
<input type="email" class="email" placeholder="Mail">
</div>
<div class="form-group">
<input type="number" class="phone" placeholder="Phone">
</div>
<div class="form-group">
<textarea name="message" id="" placeholder="Write your message"></textarea>
</div>
</div>
<input type="submit" value="Send Message" class="submit-button">
</form>
</div>
</div>
</section>
</body>
</html>