-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
123 lines (89 loc) · 2.72 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#logo {
text-align: center;
}
body {
background-image: url("paper.jpeg");
background-color: #cccccc;
background-size: cover;
}
input[type=text] {
width: 20%;
padding: 10px 20px;
margin: 8px 8px;
box-sizing: border-box;
}
input[type=text2] {
width: 45%;
padding: 10px 20px;
margin: 12px 100px;
box-sizing: border-box;
}
input[type=button] {
width: 10%;
padding: 10px 20px;
margin: 8px 8px;
background-color: lightpink;
}
</style>
<link rel="stylesheet" href="style.css">
<title> My Donuts Diary | Contact</title>
<link rel="icon" href="logo-icon.png" type="image/png">
</head>
<body>
<div class="marginTop50">
<ul>
<li> <a href="index.html">Home</a> </li>
<li> <a href="about-us.html">About Us</a> </li>
<li> <a href="services.html">Services</a> </li>
<li> <a href="contact.html">Contact</a> </li>
</ul>
</div>
<div id="logo">
<img src = "logo.png" height=200px/>
</div>
<h1 style=font-size:50px; text-align=center;> Contact Information </h1>
<h2 style=font-size:35px;>
Come to visit us or write to us!
<br>
</h2>
<h3 style=font-size:30px;>
Location & Hours:
</h3>
<h3 style=font-size:20px;>
1234 567 Drive SE
<br>
Bellevue, WA 98007
<br>
<br>
Open everyday:
<br>
10:00AM - 4:00PM
<br>
<br>
</h3>
<h3 style=font-size:30px;>
Phone:
</h3>
<h3 style=font-size:20px;>
(425)-678-1212
<br>
<br>
</h3>
<form action=# method='post' style='text-align: center'>
<label>Enter Your Name:</label><input type="text" name='name' placeholder ="Name"><br />
<br />
<label>Enter Your Email:</label><input type ="text" name='email' placeholder ="Email"><br />
<br />
<label>Enter Your Message:</label><br><input type ="text2" name='message' placeholder ="Message" style="height:200px">
<br />
<input type = "button" value = "Submit">
</form>
<footer style='text-align: right'>
<p> @2022 My Donuts Diary<br>
</footer>
</body>
</html>