-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
70 lines (62 loc) · 2.72 KB
/
contact.html
File metadata and controls
70 lines (62 loc) · 2.72 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
<!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>portfolio
</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- <div class="port"><img src="port.png" alt="Aman Kumar"> </div> -->
<!-- <div class="port"><img src="port.png" alt="Aman Kumar"> </di> -->
<div class="container">
<div class="sidebar sidebarGo">
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/intro.html">My intro</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/blog.html">Blog</a></li>
<li><a href="/contact.html">Contact me</a></li>
</ul>
</nav>
</div>
<div class="main">
<div class="hamburger">
<img class="ham"src="ham.png" alt="" width="23">
<img class="cross"src="cross.png" alt="" width="23">
</div>
<div class="contactform">
<h1>Contact me for work/General enquires</h1>
<form>
<div class="mb-3">
<label for="clientemail" class="form-lable"> NAME </label>
<input type="Name" class="form-control" id="clientemail" aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="clientemail" class="form-lable">EMAIL ADDRESS</label>
<input type="email" class="form-control" id="clientemail" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text text-muted">We'll never share your email & phone with anyone else.</div>
</div>
<div class="mb-3">
<label for="clientphone" class="form-lable">PHONE</label>
<input type="phone" class="form-control" id="clientphone">
</div>
<div class="mb-3">
<label for="clientemail" class="form-lable"> ENQURIES </label>
<input type="Enquires" class="form-control" id="clientemail" aria-describedby="emailHelp">
</div>
<div class="mb-3" id="form-check">
<input type="checkbox" class="form-check-input" id="isclient">
<label class="form-check-label" for="isclient">I will accept all yours term and conditions</label>
</div>
<button type="submit" class="btn btn-sm">Submit</button>
</form>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>