-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
54 lines (54 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>CAREER GUIDANCE</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<title>Career Guidance</title>
</head>
<body>
<nav>
<div class="nav-list v-class" id="nav-elem">
<ul>
<li><a class="active" href="home.html">Home</a></li>
<li><a href="tenth.html">After 10th</a></li>
<li><a href="twelve.html">After 12th</a></li>
<li><a href="graduate.html">After Graduation</a></li>
<li><a href="#">Govt Exams</a></li>
<li><a href="#">Check Jobs</a></li>
<li><a href="contact.html">Contact us</a></li>
<li><a href="about.html">About us</a></li>
</ul>
</div>
</nav>
<!-- nav bar ends -->
<h1> Contact Us for general queries and work related problems</h1>
<div class="contactform">
<img src="contact.png" alt="">
<form>
<input type="text" id="Username" class = "myInput" placeholder="Enter your name">
<input type="email" id="UserEmail" class = "myInput" aria-describedby="emailHelp" placeholder="Enter your email">
<div id="emailHelp" class="formtext" >(We'll never share your details with anyone else...)</div>
<input type="tel" id="phonenumber" class = "myInput" placeholder="Enter your phone number">
<textarea class="ftextarea" name = "MyInfo" cols="90" placeholder="Describe your query"></textarea>
<button type="submit" class="buttons">Submit</button>
</form>
</div>
<!-- footer starts -->
<section class="footer">
<div class="p">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Perspiciatis nemo ex dolore perferendis a
recusand</div>
<div class="icons">
<i class="fa fa-facebook"></i>
<i class="fa fa-instagram" aria-hidden="true"></i>
<i class="fa fa-twitter" aria-hidden="true"></i>
<i class="fa fa-university" aria-hidden="true"></i>
<i class="fa fa-snapchat-ghost" aria-hidden="true"></i>
</div>
</section>
<!-- footer ends -->
</body>
</html>