-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
98 lines (79 loc) · 2.87 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
<!DOCTYPE html>
<html>
<head>
<title>Frank Business Webpage</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</style>
</head>
<body>
<div class="header">
<h1>
<div class="logo">
<a style="text-decoration: none; color: white; font-family: Arial, Helvetica, sans-serif;" href="index.html">
<b style="text-decoration: none;">Frank's Kitchen</b>
</a>
</div>
<br>
<a href="index.html" style="color: white;; text-decoration: none; text-align: center;">
Home
</a>
<a href="about.html" style="color: white;; text-decoration: none; text-align: center;">
About
</a>
<a href="contact.html" style="color: white;; text-decoration: none; text-align: center;">
Contact
</a>
</br>
</h1>
</div>
<center>
<form action="#">
<label for="ename">
<h2 style="color: #3A483D;">Email Address</h2></label>
<input div class="textbox" name="text" id="ename" name="ename" placeholder="Email Address">
<label for="fname">
<h2 style="color: #3A483D;">First Name</h2></label>
<input name="text" id="fname" name="fname" placeholder="First Name">
<label for="lname">
<h2 style="color: #3A483D;">Last Name</h2></label>
<input name="text" id="lname" name="lname" placeholder="Last Name">
<label for="iname">
<h2 style="color: #3A483D;">Inquries</h2></label></label>
<input name="text" id="iname" name="iname" placeholder="Inquries">
<br><br>
<input type="submit" value="Submit"><br></br>
</form>
</center>
<footer>
<div class="row">
<div class="column">
<br></br>
<center>
<h4 style="color:black">© 2023 by The Organic Shop. Proudly created by Frank Li.</h4>
</center>
</div>
<div class="column">
<center>
<form action="#">
<label for="fname">
<h2 style="color: white;">Join the Mailing List</h2></label>
<input name="text" id="fname" name="fname" placeholder="Email Address">
<br><br>
<input type="submit" value="Submit">
</form>
</center>
</div>
</div>
</footer>
<div class="logo">
<center>
<a href="index.html" style=" text-decoration: none;"></a>
<h1 style="color: white; font-family: Arial, Helvetica, sans-serif;">Frank's Kitchen</h1>
</a>
</center>
</div>
</html>