-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
ContactUs.html
209 lines (198 loc) · 7.2 KB
/
ContactUs.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
205
206
207
208
209
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Chaos</title>
<link rel="stylesheet" href="preloaderStyle.css">
<link rel="stylesheet" href="css/contactus.css">
<style>
body {
font-family: 'Arial', sans-serif;
/* Default font */
font-weight: bold;
/* Make all text bold */
margin: 0;
/* Remove default margin */
padding: 0;
/* Remove padding */
height: 100vh;
/* Full height */
display: flex;
/* Use flexbox */
justify-content: center;
/* Center horizontally */
align-items: center;
/* Center vertically */
background-image: url('https://i.pinimg.com/736x/75/c6/55/75c655ef4817db78516e44a8ac2cde20.jpg');
/* Add your background image */
background-size: cover;
/* Cover the entire background */
background-position: center;
/* Center the background image */
color: #5c4b8a;
/* Dark purple color for text */
}
h1 {
margin-bottom: 20px;
/* Spacing below the heading */
display: inline-block;
/* Allow rotation */
animation: rotate 5s linear infinite;
/* Animation applied */
font-size: 2.5em;
/* Increase font size */
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
/* Shadow for a cool effect */
}
@keyframes rotate {
0% {
transform: rotate(0deg);
/* Start position */
}
100% {
transform: rotate(360deg);
/* End position */
}
}
.contact-form-container {
max-width: 400px;
/* Set a max width for the form */
width: 100%;
/* Full width */
/* Center the form */
position: relative;
/* Position for layout */
padding: 20px;
/* Padding around the form */
background: white;
/* White background for form */
border-radius: 8px;
/* Rounded corners */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
/* Soft shadow */
opacity: 0.9;
/* Slightly transparent to see background */
}
.form-group {
margin-bottom: 15px;
/* Space between form groups */
width: 100%;
/* Full width for inputs */
}
input[type="text"] {
width: 100%;
/* Full width */
padding: 10px;
/* Padding for inputs */
box-sizing: border-box;
/* Include padding in width */
border: 1px solid #ccc;
/* Border for inputs */
border-radius: 4px;
/* Rounded corners */
font-size: 1em;
/* Increase input font size */
}
button {
padding: 8px 12px;
/* Smaller button size */
width: auto;
/* Auto width for the button */
cursor: pointer;
/* Pointer cursor on hover */
background-color: #5c4b8a;
/* Dark purple button color */
color: white;
/* Text color */
border: none;
/* No border */
border-radius: 4px;
/* Rounded corners */
margin-top: 10px;
/* Space above button */
font-size: 1em;
/* Button font size */
transition: background-color 0.3s;
/* Transition effect for button */
}
button:hover {
background-color: #452f63;
/* Darker purple on hover */
}
</style>
</head>
<body>
<!-- preloader -->
<div class="container">
<div class="preloader">
<div class="preloader__wheel-wrapper">
<div class="preloader__wheel"><span class="preloader__content">l</span>
<div class="preloader__inner-wheel"></div>
<div class="preloader__second-inner-whell"></div>
</div>
</div>
<div class="preloader__wheel-wrapper">
<div class="preloader__wheel"><span class="preloader__content">o</span>
<div class="preloader__inner-wheel"></div>
<div class="preloader__second-inner-whell"></div>
</div>
</div>
<div class="preloader__wheel-wrapper">
<div class="preloader__wheel"><span class="preloader__content">a</span>
<div class="preloader__inner-wheel"></div>
<div class="preloader__second-inner-whell"></div>
</div>
</div>
<div class="preloader__wheel-wrapper">
<div class="preloader__wheel"><span class="preloader__content">d</span>
<div class="preloader__inner-wheel"></div>
<div class="preloader__second-inner-whell"></div>
</div>
</div>
<div class="preloader__wheel-wrapper">
<div class="preloader__wheel"><span class="preloader__content">i</span>
<div class="preloader__inner-wheel"></div>
<div class="preloader__second-inner-whell"></div>
</div>
</div>
<div class="preloader__wheel-wrapper">
<div class="preloader__wheel"><span class="preloader__content">n</span>
<div class="preloader__inner-wheel"></div>
<div class="preloader__second-inner-whell"></div>
</div>
</div>
<div class="preloader__wheel-wrapper">
<div class="preloader__wheel"><span class="preloader__content">g</span>
<div class="preloader__inner-wheel"></div>
<div class="preloader__second-inner-whell"></div>
</div>
</div>
</div>
</div>
<div class="contact-form-container">
<h1>Contact Us</h1>
<form id="contactForm">
<div class="form-group">
<input type="text" class="anim" id="description" value="Name" required>
</div>
<div class="form-group">
<input type="text" class="anim" id="phone" value="Email" required>
</div>
<div class="form-group">
<input type="text" class="anim" id="name" value="Phone Number" required>
</div>
<div class="form-group">
<input type="text" class="anim" id="email" value="Description" required>
</div>
<div class="form-group">
<button type="submit">Submit</button>
</div>
</form>
<div id="popup" class="popup"></div>
</div>
<script src="preloader.js"></script>
<script src="js/script.js"></script>
<script src="js/night_time.js"></script>
</body>
</html>