-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
62 lines (59 loc) · 2.18 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>
<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 of Sagar Biswas</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<h1>My Contact Details</h1>
</div>
<hr>
<div>
<table style="text-align: left;" cellspacing="10">
<tr>
<th>Name:</th>
<td><em>Sagar Biswas</em></td>
</tr>
<tr>
<th>Contact:</th>
<td><em>+918967997966</em></td>
</tr>
<tr>
<th>Mail:</th>
<td><em>biswassagar927@gmail.com</em></td>
</tr>
<tr>
<th>Address:</th>
<td>
<address>
Vill+P.O: Belta <br> PS: Gopalnagar<br>Block: Bongaon<br>Dist: North 24 Parganas<br>State: West
Bengal<br>Country: India
</address>
</td>
</tr>
</table>
</div>
<div>
<form action="mailto:biswassagar927@gmail.com" method="POST" enctype="text/plain">
<label for="name">Your Name</label><br>
<input type="text" name="Name" placeholder="Enter Name"><br>
<label for="mail">Mail ID</label><br>
<input type="email" name="Email" placeholder="Email"><br>
<label for="text">Message</label><br>
<textarea name="message" name="Message" id="" cols="30" rows="10" placeholder="Message"></textarea><br>
<label for="checkbox">I want to Hire You</label>
<input type="checkbox" name="I want to Hire You"><br>
<h4>Are you a Web Developer</h4>
<label for="radio">Yes</label>
<input type="radio" name="Developer Yes" class="developer_yes"><br>
<label for="radio">No</label>
<input type="radio" name="Developer No" class="developer_no"><br><br>
<input type="submit">
</form>
</div>
</body>
</html>