-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
51 lines (48 loc) · 1.18 KB
/
contact.html
File metadata and controls
51 lines (48 loc) · 1.18 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
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Contact</title>
</head>
<body>
<img src="./images/logo.png" width="250" height="250" alt="organic logo" />
<h3>The Organic Grocery Store</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="numbers.html">Numbers</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<img src="./images/background.jpg" id="logo" width="100%" alt="groceries" />
<br />
<h1>Contact Us</h1>
<br />
<form action="">
<!-- name -->
<label for="name">Name</label>
<input type="text" name="name" id="name">
<br />
<br />
<!-- email -->
<label for="email">Email</label>
<input type="text" name="email" id="email">
<br />
<br />
<!-- description -->
<p>Description</p>
<textarea
name="description" id="" cols="30" rows="10"
placeholder="Your Description"
></textarea>
</form>
<br />
<br />
<br />
<br />
<br />
<p>copyright©2019</p>
<h3><a href="#logo">Back To Top</a></h3>
</body>
</html>