-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
44 lines (41 loc) · 1.07 KB
/
contact.html
File metadata and controls
44 lines (41 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact Me</title>
<link rel="stylessheet" href="css/styles.css">
</head>
<body>
<h1>Contact Details</h1>
<table>
<tr>
<td>
<strong>Phone:</strong>
</td>
<td>03493212647</td>
</tr>
<tr>
<td>
<strong>Email:</strong>
</td>
<td>
adnan3212647@gmail.com
</td>
</tr>
<tr>
<td>
<strong>Address:</strong>
</td>
<td>Chapri Tehsil Isa Khel, District Mianwali, Punjab Pakistan</td>
</tr>
</table>
<form action="index.html">
<label><strong>Your Name:</strong></label>
<input type="text"><br>
<label><strong>Your Email:</strong></label>
<input type="email"><br>
<label><strong>Your Message:</strong></label><br>
<textarea rows="10" cols="30"></textarea>
<input type="submit">
</form>
</body>
</html>