-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactus.html
More file actions
159 lines (128 loc) Β· 4.26 KB
/
Copy pathContactus.html
File metadata and controls
159 lines (128 loc) Β· 4.26 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="Image/calories-calculator.png" rel="icon" />
<title>HealthCore</title>
</head>
<body>
<header>
<label for="toggle" id="">☰</label>
<input type="checkbox" id="toggle">
<nav class="Menu">
<a href="index.html" id="Home"><b>Home</b></a>
<a href="TopExercise.html" id="TopExercise"><b>Top Exercise</b></a>
<a href="" id="f"><img src="Image/calories-calculator.png" alt="" width="48" id="icon" style="bottom: 0;"></a>
<a href="CalorieCalculator.html" id="Calculator"><b>Calorie Calculator</b></a>
<a href="Contactus.html" id="Contactus"><b>Contact us</b></a>
</nav>
</header>
<article>
<form action="Result.html" method="get">
<fieldset>
<legend><h2>Contact Us</h2></legend>
<p>
<p>Name:</p>
<input type="text" name="name" id="name" required placeholder="First and last name" >
</label>
</p>
<p>
<p>Email: </p>
<input type="email" name="email" id="email" required placeholder="email@gmail.com">
</label>
</p>
<p>
<p>Phone:</p>
<input type="text" name="Phone" required id="Phone">
</label>
</p>
</fieldset>
<fieldset>
<legend>Additional Information</legend>
<textarea name="Feedback" rows=5 cols=45></textarea>
</fieldset>
<fieldset>
<input type="submit" id="submit" value="Submit"></input>
</fieldset>
</form>
</article>
<footer>
<p><a href="aboutus.html">about us</a> | <a href="map.html">sitemap</a> |<a href="Conectus.html">Contact us</a> | HealthCore@reallygreatsite.com | 2024/11/8</p>
</footer>
</body>
</html>
<style>
nav{padding: 0;}
nav{width: 0%;}
nav{text-align: right;}
nav{margin: auto;}
nav{text-align: right;}
label{display: none;}
label{position: relative;}
label{float: right;}
label{color: black;}
label{background-color: white;}
label{border: 1px solid black;}
.Menu{padding: 20px;}
nav a{font-size: 21px;}
nav{text-align: center;}
nav{width: 100%;}
nav a:link{text-decoration: none;}
nav a{color: white;}
nav a{margin: 1.5em;}
nav{background-color: #89babd;}
nav{border-bottom:2px solid black ;}
#toggle{display: none;}
nav a{padding :15px;}
#submit{width: 120px; height: 30px; background-color: green; color: white;}
#Contactus {background-color: white;}
#Contactus{color: black;}
#Contactus{ border-radius: 25px;}
#Contactus{ opacity: 0.7;}
#Home:hover{background-color: white;}
#Home:hover{color: black;}
#Home:hover{ border-radius: 25px;}
#TopExercise:hover{background-color: white;}
#TopExercise:hover{color: black;}
#TopExercise:hover{ border-radius: 25px;}
#Calculator:hover{background-color: white;}
#Calculator:hover{color: black;}
#Calculator:hover{ border-radius: 25px;}
@media only screen and (max-width:720px){
label{display: block;}
label{padding: 7px;}
label{position: fixed;}
label{right:20px;}
label{top: 70px;}
.pic{display: none;}
.Menu{display: none;}
.Menu a{display: block;}
.Menu a img{display: none;}
#f{display: none;}
#Contactus{margin: auto; }
#Contactus{ border-radius: 0px;}
#TopExercise:hover{ border-radius: 0px;}
#TopExercise:hover{ margin: auto;}
#TopExercise{margin: auto;}
#Home{margin: 0;}
#Home:hover{border-radius: 0;}
#Calculator{margin: 0;}
#Calculator:hover{border-radius: 0 ;}
nav a{font-size: 14px;}
nav{width: 35%;}
nav{float: right;}
.Menu{float: right;}
.Menu{text-align: center; }
.Menu{position: fixed;}
.Menu{top: 6.3em;}
.Menu{right: 20px;}
.Menu{padding: 5px;}
label{cursor: pointer;}
#toggle:checked + .Menu{display: block;}
}
footer{text-align: center;}
footer{background-color: slategray;}
footer a:link{color: black;}
footer{padding: 10px;}
</style>