-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathongoing-support.html
219 lines (204 loc) · 9.98 KB
/
ongoing-support.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
210
211
212
213
214
215
216
217
218
219
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Company Profile</title>
<link rel="stylesheet" href="normalize.css" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="all.min.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap" rel="stylesheet" />
</head>
<body>
<!-- Start Header -->
<div class="header" id="header">
<div class="container">
<a href="#" class="logo">
<img src="./img/alberta-28548_1280.png" alt="Wild Rose Devs" style="max-height:60px;">
</a>
<ul class="main-nav">
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="#">Services</a>
<!-- Start MegMenu -->
<div class="mega-menu">
<div class="image">
<img src="./img/Wild-Rose-Devs-Logo.jpg" alt="megmenu-image" />
</div>
<ul class="links">
<li>
<a href="web-development.html">
<i class="far fa-building fa-fw"></i> Web Development
</a>
</li>
<li>
<a href="web-design.html">
<i class="fa-regular fa-circle-question"></i> Web Design
</a>
</li>
<li>
<a href="digital-marketing.html">
<i class="fas fa-server fa-fw"></i> Digital Marketing
</a>
</li>
</ul>
<ul class="links">
<li>
<a href="digital-marketing.html">
<i class="fas fa-server fa-fw"></i> Digital Marketing
</a>
</li>
<li>
<a href="hosting.html">
<i class="fas fa-server fa-fw"></i> Hosting
</a>
</li>
<li>
<a href="cybersecurity.html">
<i class="fas fa-server fa-fw"></i> Cybersecurity
</a>
</li>
<li>
<a href="ongoing-support.html">
<i class="fas fa-server fa-fw"></i> Ongoing Support
</a>
</li>
</ul>
</div>
<!-- End MegMenu -->
</li>
<li><a href="#">Meet the Team</a></li>
<li><a href="#Contact Section">Get in touch</a></li>
</ul>
</div>
</div>
<!-- End Header -->
<!-- Scroll to top button -->
<button id="scroll-up" onclick="topScroll()"><i class="fa-solid fa-angles-up"></i></button>
<button>something something</button>
<div class="splitter4"></div>
<!-- CONTACT SECTION START -->
<section class="contact-section" id="Contact Section">
<!-- Full-width background for canvas animation -->
<div class="contact-background">
<canvas id="canvas"></canvas>
</div>
<!-- Foreground contact container -->
<div class="contact-container">
<h2 class="ContactHeader">Let's Create Something Remarkable Together</h2>
<p>Let’s discuss how we can bring your vision to life. Connect with us.</p>
<div class="contact-content">
<div class="form-column">
<form action="/contact" method="POST" enctype="multipart/form-data">
<div class="contact-row">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="Name" placeholder="Your Name" />
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="Email" placeholder="Your Email" />
</div>
</div>
<div class="contact-row">
<div class="form-group">
<label for="phone">Phone Number:</label>
<input type="tel" id="phone" name="Phone" placeholder="Your Phone Number" />
</div>
<div class="form-group">
<label for="project-name">Project Name:</label>
<input type="text" id="project-name" name="Project Name"
placeholder="Your Project Name" />
</div>
</div>
<div class="form-group">
<label for="idea">Describe your idea:</label>
<textarea id="idea" name="Idea" rows="4"
placeholder="Describe your idea here..."></textarea>
</div>
<div class="contact-row">
<div class="form-group">
<label for="budget">What is your budget?</label>
<select id="budget" name="Budget">
<option value="">Pick Option</option>
<option value="500-1000">$500 - $1000</option>
<option value="1000-2000">$1000 - $2000</option>
<option value="2000-5000">$2000 - $5000</option>
<option value="5000+">$5000+</option>
</select>
</div>
<div class="form-group">
<label for="hear-about">How did you hear about us?</label>
<select id="hear-about" name="Heard About Us">
<option value="">Pick Option</option>
<option value="google">Google</option>
<option value="social">Social Media</option>
<option value="friend">Friend/Referral</option>
</select>
</div>
</div>
<div class="form-group">
<label for="files">Drop files (PDF, Word, etc.):</label>
<input type="file" id="files" name="Files" multiple />
</div>
<button type="submit">SEND</button>
</form>
</div>
</div>
</div>
</section>
<!-- CONTACT SECTION END -->
<div class="splitter5"></div>
<!-- Footer Start -->
<div class="footer">
<div class="container">
<div class="list-item">
<div class="info">
<!-- Footer Logo or Name -->
<a href="#" class="logo" style="display:inline-flex;align-items:center;">
<img src="./img/Wild-Rose-Devs-Logo.jpg" alt="Wild Rose Devs Logo"
style="max-height:20vh;margin-right:20vh;">
</a>
<p>© 2025 Wild Rose Devs. All Rights Reserved.</p>
</div>
<div class="list">
<h3>Projects</h3>
<ul>
<li><a href="#projects">Projects</a></li>
<li><a href="#Our Work">Our Work</a></li>
<li><a href="#our-team">Our Team</a></li>
</ul>
</div>
<div class="list">
<h3>Services</h3>
<ul>
<li><a href="#services">Services</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#Contact Section">Contact</a></li>
</ul>
</div>
<div class="list">
<h3>Follow Us</h3>
<ul class="media">
<li>
<a href="https://www.linkedin.com/company/wildrosedevs" target="_blank">
<i class="fab fa-linkedin" style="margin-right:5px;"></i>LinkedIn
</a>
</li>
<li>
<a href="https://github.com/WildRoseDevs" target="_blank">
<i class="fab fa-github" style="margin-right:5px;"></i>GitHub
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Footer End -->
<script src="script.js"></script>
<script src="server.js"></script>
</body>
</html>