-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-me.html
57 lines (51 loc) · 1.37 KB
/
contact-me.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<table cellspacing="10">
<tr>
<h1>My Contact Details</h1>
</tr>
<tr>
<td><strong>Address</strong></td>
<td>4 Elganaeen Street, behinde Mogamma Elmawakeef, Shibeen Elkoum, Menofia, Egypt</td>
</tr>
<tr>
<td><strong>Telephone<br>Number</strong></td>
<td>00201094377724</td>
</tr>
<tr>
<td><strong>Emails</strong></td>
<td>
<ul>
<li>ahmed.elqusy@el-eng.menofia.edu.eg</li>
<li>elqusy90@gmail.com</li>
</ul>
</td>
</tr>
</table>
<hr>
<form action="mailto:ahmed.elqusy@el-eng.menofia.edu.eg" method="post" enctype="text/plain">
<table cellspacing="10">
<tr>
<td> <label>Your Name: </label></td>
<td> <input type="text" name="yourName" value=""></td>
</tr>
<tr>
<td><label>Your Email: </label></td>
<td><input type="email" name="yourEmail" value=""></td>
</tr>
<tr>
<td><label>Your Message: </label></td>
<td><textarea name="yourMessage" rows="10" cols="30"></textarea></td>
</tr>
<tr>
<td> <input type="submit" name="" value="Submit"></td>
</tr>
</table>
</form>
</body>
</html>