-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
162 lines (103 loc) · 4.54 KB
/
Copy pathcontact.html
File metadata and controls
162 lines (103 loc) · 4.54 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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<section class="container">
<div id="menu-button" class="fas fa-bars-staggered"></div>
<a href="index.html" class="logo"><i class="fas fa-briefcase"></i>
GoCareer</a>
<nav class="navbar">
<a href="index.html">home</a>
<a href="about.html">about us</a>
<a href="jobs.html">all jobs</a>
<a href="contact.html">contact</a>
<a href="login.html">account</a>
</nav>
<a href="#" class="button" style="margin-top: 0%;">Post job</a>
</section>
</header>
<!--Contact us section start-->
<div class="section-title">Contact Us</div>
<section class="contact">
<div class="box-container">
<div class="box">
<i class="fas fa-phone"></i>
<a href="Tel:1234567890">123-456-7890</a>
<a href="Tel:1122334455">111-222-3330</a>
</div>
<div class="box">
<i class="fas fa-envelope"></i>
<a href="Mail to:riya@singhgmail.com">riya@singhgmail.com</a>
<a href="Mail to:megha@singhgmail.com">megha@singhgmail.com</a>
</div>
<div class="box">
<i class="fas fa-map-marker-alt"></i>
<a href="#">Flat No.1, a-1 Building, Janakpuri, Delhi, India - 110076</a>
</div>
</div>
<form action="" method="post">
<h3>Drop Your Message</h3>
<div class="flex">
<div class="box">
<p>Name <span>*</span></p>
<input type="text" name="name" required maxlength="20" placeholder="Enter Your Name" class="input">
</div>
<div class="box">
<p>Email <span>*</span></p>
<input type="Email" name="Email" required maxlength="50" placeholder="Enter Your Email" class="input">
</div>
<div class="box">
<p>Number <span>*</span></p>
<input type="Number" name="Number" required min="0" max="9999999999" maxlength="20" placeholder="Enter Your Number" class="input">
</div>
<div class="box">
<p>Role <span>*</span></p>
<select name="Role" required class="input">
<option value="Employee">Job Seeker (Employee)</option>
<option value="Employeer">Job Provider (Employeer)</option>
</select>
</div>
</div>
<p>Message <span>*</span></p>
<textarea name="message" class="input" required maxlength="1000" placeholder="Enter Your Message" cols="30" rows="10"></textarea>
<input type="submit" value="Send Message" name="send" class="button">
</form>
</section>
<footer class="footer">
<section class="grid">
<div class="box">
<h3>quick links</h3>
<a href="index.html"><i class="fas fa-angle-right"></i>home</a>
<a href="about.html"><i class="fas fa-angle-right"></i>about</a>
<a href="jobs.html"><i class="fas fa-angle-right"></i>all jobs</a>
<a href="contact.html"><i class="fas fa-angle-right"></i>contact us</a>
<a href="contact.html"><i class="fas fa-angle-right"></i>filter serach</a>
</div>
<div class="box">
<h3>extra links</h3>
<a href="#"><i class="fas fa-angle-right"></i>account</a>
<a href="login.html"><i class="fas fa-angle-right"></i>login</a>
<a href="register.html"><i class="fas fa-angle-right"></i>register</a>
<a href="#"><i class="fas fa-angle-right"></i>post job</a>
<a href="#"><i class="fas fa-angle-right"></i>dashboard</a>
</div>
<div class="box">
<h3>follow us</h3>
<a href="#"><i class="fab fa-facebook-f"></i>facebbok</a>
<a href="#"><i class="fab fa-twitter"></i>twitter</a>
<a href="#"><i class="fab fa-instagram"></i>instagram</a>
<a href="#"><i class="fab fa-linkedin"></i>linkedin</a>
<a href="#"><i class="fab fa-youtube"></i>youtube</a>
</div>
</section>
<div class="credit">© copyright @ 2025 by <span>ms.richa chaudhary</span> | all rights reserved!</div>
</footer>
</body>
<script src="script.js"></script>
</html>