-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
48 lines (44 loc) · 1.42 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
<!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</title>
<link rel="stylesheet" href="contact.css">
</head>
<h1>Contact</h1>
<body>
<table>
<tr>
<td>Phone Number:</td>
<td>09187950314</td>
</tr>
<tr>
<td>Email:</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Address:</td>
<td>Cambajao, Cajidiocan,ROmblon</td>
</tr>
</table>
<h2>Get in touch!</h2>
<form action="?index.html">
<input type="radio" name="radio" id="click" value="Newbie">
<label for="click">Newbie</label> <br>
<input type="radio" name="radio" id="click" value="Old">
<label for="click">Old</label>
</form>
<hr>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="Your Name">Your Name</label>
<input type="text" name="Your Name" value="Name"> <br>
<label for="Email">Email</label>
<input type="email" name="Your Email" required> <br>
<label for="Message">Message Me</label> <br>
<textarea name="Name" id="" cols="30" rows="10"></textarea>
<button>Submit</button>
</form>
</body>
</html>