-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
47 lines (47 loc) · 1.61 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
<!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 Info.</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Contact Details:</h1>
<table border="2" cellspacing=20>
<tr>
<td>Name--> </td>
<td>Ansh Kumar Gupta</td>
</tr>
<tr> <td>Ph. no.--></td>
<td>12ka442ka1</td>
</tr>
<tr> <td>email--></td>
<td>itsjustemail.com</td>
</tr>
</table> <br><hr>
<form action="index.html" enctype="text/plain">
<label for="name">your name</label>
<input type="text">
<br><br>
<label for="email">your email</label>
<input type="email">
<br><br>
<label for="password">enter your password</label>
<input type="password">
<br><br>
<label for="date and time">pick the date and time</label>
<input type="datetime-local"><br><br>
<label for="file">Attach your file</label>
<input type="file"><br><br>
<label for="color">pick your favourite colour</label>
<input type="color"><br><br>
<label for="instruvtions">Read all the info. carefully once</label>
<input type="checkbox"> <br><br>
<input type="submit"><br><br>
<label for="text">please enter your message</label><br><br>
<textarea name="message" id="" cols="30" rows="10"></textarea>
</form>
</body>
</html>