-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
106 lines (104 loc) · 2.92 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!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="style.css" />
<script src="contact.js"></script>
</head>
<body>
<div id="top" class="content">
<center>
<img src="./img/logo.png" width="30%" alt="logo" />
</center>
<br />
<table cellpadding="10" cellspacing="7" width="100%">
<tr>
<th bgcolor="chocolate">
<a href="index.html" class="link">HOME</a>
</th>
<th bgcolor="chocolate"><a href="menu.html" class="link">MENU</a></th>
<th bgcolor="chocolate">
<a href="about.html" class="link">ABOUT</a>
</th>
<th bgcolor="chocolate">
<a href="contact.html" class="link">CONTACT</a>
</th>
</tr>
</table>
<br />
<h1 align="center">CONTACT US</h1>
<form action="" name="frm" method="post">
<table
border="2"
cellspacing="0"
cellpadding="10"
align="center"
width="100%"
>
<tr>
<td>
<!-- name -->
<label for="name">Name:</label>
<input type="text" name="uname" id="name" />
</td>
</tr>
<br />
<br />
<tr>
<td>
<!-- email -->
<label for="email">E-mail:</label>
<input type="email" name="uid" id="email" />
</td>
</tr>
<br />
<br />
<tr>
<td>
<!-- description -->
<label for="description">Description:</label>
</td>
</tr>
<br />
<br />
<tr>
<td>
<textarea
name="desc"
id="description"
cols="30"
rows="10"
placeholder="Your Description"
></textarea>
</td>
</tr>
<tr>
<td align="center">
<input type="submit" onclick="validate()" id="frmsubmit" />
<!-- <script>
function sayHello() {
alert("Form Submitted");
}
document.getElementById("frmsubmit").onclick = sayHello;
</script> -->
</td>
</tr>
</table>
</form>
<br />
<br />
<br />
<br />
<br />
<p>zealtrax101|copyright©2021</p>
<br />
<br />
<button type="button">
<a href="#top" class="link" style="font-family: fantasy">BACK TO TOP</a>
</button>
</div>
</body>
</html>