-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (82 loc) · 4.25 KB
/
index.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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./images/contact-us-favicon.png" type="image/x-icon">
<link rel="shortcut icon" href="./images/start-up.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css">
<title>Contact | Get in touch</title>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container-fluid main-section">
<div class="row">
<div class="heading-primary fw-bolder text-uppercase text-center position-relative">
Contact
<div class="secondary-heading text-uppercase fw-bolder position-absolute">Get in touch</div>
</div>
</div>
<div class="row padding-row">
<div class="col-lg-4">
<div class="heading-tertiary fw-bold text-uppercase text-white">Don't be shy</div>
<div class="para text-white">
Feel free to get in touch with me. I am always open to discussing new projects, creative ideas or
opportunities to be part of your visions.
</div>
<div class="contact-details mt-lg-5 mt-md-4 mt-3">
<div>
<a href="" class="text-decoration-none contact-icon-link">
<i class="fa-solid fa-envelope contact-icon"></i>
</a>
</div>
<div class="contact-info mt-3 text-white">
Mail me
<div class=""><a href="mailto:info@mail.com"
class="text-decoration-none text-white">info@mail.com</a></div>
</div>
<div class="mt-5">
<a href="" class="text-decoration-none contact-icon-link">
<i class="fa-solid fa-phone contact-icon"></i>
</a>
</div>
<div class="contact-info mt-3 text-white">
Call me
<div class=""><a href="" class="text-decoration-none text-white">+92 xxx xxxxxxx</a></div>
</div>
</div>
</div>
<div class="col-lg-8">
<div class="form-group">
<input type="text" name="" id="" class="form-control input-fields text-white"
placeholder="Enter your name">
</div>
<div class="form-group mt-lg-4 mt-3">
<input type="text" name="" id="" class="form-control input-fields text-white"
placeholder="Enter a valid email address">
</div>
<div class="form-group mt-lg-4 mt-3">
<textarea name="" id="" cols="30" rows="4" class="form-control input-fields text-white"
placeholder="Enter your message"></textarea>
</div>
<div class="form-check mt-lg-5 mt-4">
<label class="form-check-label">
<input type="checkbox" class="form-check-input" name="" id="" value="checkedValue">
<span class="checkbox-label text-white">I accept the
<a href="" class="text-decoration-none terms-and-service-link">Terms of service</a>
</span>
</label>
</div>
<div class="form-button mt-lg-5 mt-4">
<button type="submit" class="form-btn text-uppercase fw-bold">Submit</button>
</div>
</div>
</div>
</div>
</body>
</html>