-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcorperate.html
204 lines (180 loc) · 5.56 KB
/
corperate.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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Corporate Partnership - RealSurveys</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f9f9f9;
margin: 0;
padding: 0;
color: #333;
}
header {
background-color: #2e8b57;
color: #fff;
padding: 20px;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header h1 a {
text-decoration: none;
color: #fff;
font-size: 36px;
}
header nav ul {
list-style: none;
padding: 0;
margin: 20px 0 0 0;
display: flex;
justify-content: center;
gap: 20px;
}
header nav ul li a {
color: #fff;
text-decoration: none;
font-size: 16px;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s;
}
header nav ul li a:hover {
background-color: #3a9f6f;
}
.main-content {
padding: 60px 20px;
text-align: center;
background-color: #ffffff;
}
.main-content h2 {
font-size: 36px;
color: #2e8b57;
margin-bottom: 20px;
}
.form-container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.form-container h3 {
font-size: 28px;
color: #2e8b57;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 20px;
text-align: left;
}
.form-group label {
display: block;
font-size: 16px;
color: #333;
margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
}
.form-group textarea {
height: 120px;
resize: vertical;
}
.form-group input[type="submit"] {
background-color: #2e8b57;
color: #fff;
border: none;
cursor: pointer;
padding: 15px;
font-size: 18px;
transition: background-color 0.3s;
}
.form-group input[type="submit"]:hover {
background-color: #3a9f6f;
}
footer {
background-color: #2e8b57;
color: #fff;
text-align: center;
padding: 30px;
margin-top: 40px;
}
footer p {
margin: 0;
font-size: 14px;
}
@media (max-width: 768px) {
header nav ul {
flex-direction: column;
align-items: center;
}
.form-container {
padding: 15px;
}
}
</style>
</head>
<body>
<header>
<h1><a href="index.html">RealSurveys</a></h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="corporate.html">Corporate</a></li>
</ul>
</nav>
</header>
<div class="main-content">
<h2>Corporate Partnership</h2>
<p>Thank you for your interest in partnering with RealSurveys. Please fill out the form below to get started. We are excited to work with you and provide valuable insights to help your business thrive.</p>
<div class="form-container">
<h3>Corporate Registration Form</h3>
<form action="/submit-corporate-form" method="post">
<div class="form-group">
<label for="companyName">Company Name</label>
<input type="text" id="companyName" name="companyName" required>
</div>
<div class="form-group">
<label for="contactName">Contact Person</label>
<input type="text" id="contactName" name="contactName" required>
</div>
<div class="form-group">
<label for="contactEmail">Contact Email</label>
<input type="email" id="contactEmail" name="contactEmail" required>
</div>
<div class="form-group">
<label for="contactPhone">Contact Phone</label>
<input type="tel" id="contactPhone" name="contactPhone" required>
</div>
<div class="form-group">
<label for="companyWebsite">Company Website</label>
<input type="url" id="companyWebsite" name="companyWebsite">
</div>
<div class="form-group">
<label for="companyMessage">Message</label>
<textarea id="companyMessage" name="companyMessage" required></textarea>
</div>
<div class="form-group">
<input type="submit" value="Submit">
</div>
</form>
</div>
</div>
<footer>
<p>© 2024 RealSurveys. All rights reserved.</p>
</footer>
</body>
</html>