-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
62 lines (58 loc) · 4.11 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
<!DOCTYPE html>
<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 > DOM</title>
<!-- we can also add here js file but proble is that it load befor load of document -->
<link rel="stylesheet" href="portfolio.css">
</head>
<body>
<div class="container">
<div class ="sidebar sidebargo">
<nav >
<ul>
<li><a href="poftfolio.html">home</a></li>
<li ><a href="about.html">about</a></li>
<li ><a href="service.html">service</a></li>
<li ><a href="blog.html">Project</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</nav>
</div>
<div class="main">
<div class="hambuger">
<img src="ham.png" alt="ham" class="ham" width="24">
<img src="cross1.png" alt="cross" class="cross" width="24">
</div>
<div class="infocntainer">
<div class="contactform">
<h1> Contact me for work and more Enquiries. </h1>
<form>
<div class="mb-3">
<label for="clientemail" class="form-label">Name </label>
<input type="name" value="eg:-mantoshmariner" class="form-control" id="clientemail" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text"></div>
</div>
<div class="mb-3">
<label for="clientemail" class="form-label">Email address </label>
<input type="email" value="eg:[email protected]" class="form-control" id="clientemail" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email and phone with anyone else.</div>
</div>
<div class="mb-3">
<label for="clientphone" class="form-label">phone </label>
<input type="phone" class="form-control" id="clientphone" placeholder="1255456888">
</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 want to work on project with you </label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</div>
<script src="portfolio.js"></script>
</body>
</html>