-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
193 lines (162 loc) · 5.91 KB
/
Contact.html
File metadata and controls
193 lines (162 loc) · 5.91 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us | Random Script</title>
<link rel="icon" href="Image/logo.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: linear-gradient(315deg, #b1ade2 0%, #7ddff8 74%);
min-height: 100vh;
}
.navbar {
background-color: black;
opacity: 0.9;
}
.nav-item a {
color: white;
font-weight: 500;
transition: 0.3s ease;
}
.nav-item a:hover {
color: rgb(0, 195, 255);
}
.contact-section {
padding: 100px 0;
}
.contact-container {
background: white;
border-radius: 15px;
box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
padding: 40px;
max-width: 900px;
margin: auto;
}
.contact-header {
text-align: center;
margin-bottom: 40px;
}
.contact-header h1 {
font-weight: 700;
font-size: 2.2rem;
color: #333;
}
.contact-header p {
color: #555;
}
label {
font-weight: 500;
color: #333;
}
input,
textarea {
border-radius: 10px !important;
box-shadow: none !important;
border: 1px solid #ccc !important;
}
input:focus,
textarea:focus {
border-color: #7ddff8 !important;
box-shadow: 0 0 5px rgba(125, 223, 248, 0.5) !important;
}
.btn-submit {
background-color: #7ddff8;
color: black;
font-weight: 600;
border-radius: 10px;
transition: 0.3s;
}
.btn-submit:hover {
background-color: #4ecae6;
transform: scale(1.02);
}
footer {
text-align: center;
padding: 20px;
color: white;
background-color: black;
margin-top: 50px;
}
::-webkit-scrollbar {
width: 0.7em;
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.4);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.6);
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar fixed-top navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand" href="Menu.html">Random Script</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" style="margin-right: 30px;" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="Menu.html">Home</a></li>
<li class="nav-item"><a class="nav-link active" href="#">Contact Us</a></li>
<li class="nav-item"><a class="nav-link" href="index.html">Exit</a></li>
</ul>
</div>
</div>
</nav>
<!-- Contact Section -->
<section class="contact-section" data-aos="fade-up">
<div class="contact-container">
<div class="contact-header">
<h1>Contact Us</h1>
<p>Have any questions or feedback? We'd love to hear from you!</p>
</div>
<form>
<div class="row g-3">
<div class="col-md-6">
<label for="name" class="form-label">AADITYA GUPTA</label>
<input type="text" class="form-control" id="name" placeholder="Enter your name" required>
</div>
<div class="col-md-6">
<label for="email" class="form-label">aadityavidit@gmail.com</label>
<input type="email" class="form-control" id="email" placeholder="Enter your email" required>
</div>
<div class="col-12">
<label for="message" class="form-label">Your Message</label>
<textarea class="form-control" id="message" rows="5" placeholder="Type your message..."
required></textarea>
</div>
<div class="col-12 text-center">
<button type="submit" class="btn btn-submit px-5 py-2 mt-3">Send Message</button>
</div>
</div>
</form>
</div>
</section>
<footer>
© 2025 Random Script | Designed by Aaditya
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({ offset: 120, duration: 600 });
</script>
</body>
</html>