-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
56 lines (44 loc) · 1.86 KB
/
Copy pathcontact.html
File metadata and controls
56 lines (44 loc) · 1.86 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
<!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>Nilabja Nayan ~ </title>
<link rel="stylesheet" href="contact.css">
</head>
<body>
<div class="main">
<div class="contactform">
<h1>Contact me:</h1>
<form>
<div class="mb-3">
<label for="clientemail" class="form-label">Name:</label>
<input type="email" class="form-control" id="clientemail" aria-describedby="emailHelp">
</div>
<div class="mb-3">
<label for="clientemail" class="form-label">Email address:</label>
<input type="email" class="form-control" id="clientemail" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">(We'll never share your email 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">
</div>
Your Enquiry:
<br>
<textarea class="enquiry" name="teaxt area" rows="6" cols="60">
...
</textarea><br /><br />
<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 you to work on a project with me</label>
</div>
<br>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</div>
</div>
</body>
</html>