-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcontact.html
73 lines (63 loc) · 2.67 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
<!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 - Shaikh Minhaj - Full Stack Developer</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="images/pic-logo.jpeg">
</head>
<body>
<div class="container">
<div class="sidebar">
<!--================Navbar====================-->
<nav>
<div id="mySidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"><img src="images/cross.png"
style="height: 20px;"></a>
<ul>
<li><a href="/">Home</li></a>
<li><a href="intro.html">My Intro</li></a>
<li><a href="services.html">Services</li></a>
<li><a href="images\Shaikh Minhaj - Resume.pdf" target="_blank">Resume</a></li></a>
<li><a href="blog.html">Blog</li></a>
<li><a href="contact.html">Contact Me</li></a>
</ul>
</nav>
</div>
<!--================Main========================-->
<div class="main" id="main">
<button class="openbtn" onclick="openNav()"><img src="images/menu icon.png" style="height: 20px;" onmouseover="hoverE()"></button>
<div class="contactform">
<h1>Contact Me For Work/General Enquiries</h1>
<!--Form-->
<form>
<div class="mb-3">
<label for="clintName" class="form-label">Enter Name</label>
<input type="text" class="form-control" id="clintName">
</div>
<div class="mb-3">
<label for="clintEmail" class="form-label">Email address</label>
<input type="email" class="form-control" id="clintEmail" aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="clintPhone" class="form-label">Phone Number</label>
<input type="phone" class="form-control" id="clintPhone">
<div id="emailHelp" class="formtext-">We'll never share your email & Phone with anyone else.</div>
</div>
<div class="mb-3">
<label for="clintMessage" class="form-label">Message</label>
<textarea type="text-area" class="form-control" id="clintMessage"></textarea>
</div>
<button type="submit" class="btn btn-sm">Submit</button>
</form>
</div>
</div>
<div>
<img src="images/btn-LB.png" alt="o" height="30px" onclick="myFunction()">
</div>
</div>
<script src="script.js"></script>
</body>
</html>