Skip to content

Commit 6aad64b

Browse files
committed
request
1 parent 171a65a commit 6aad64b

4 files changed

Lines changed: 50 additions & 34 deletions

File tree

enrollment.html

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ <h1 data-reveal>Secure Your <span style="color:var(--text-primary)">Spot Today</
111111
<div id="enrollment-form-wrap">
112112
<div class="enrollment-form-card" data-reveal data-delay="100">
113113

114-
<h2>Complete Your Enrollment</h2>
114+
<h2>Training Enrolment Form</h2>
115115
<p>All fields marked * are required. Secure checkout — your data is protected.</p>
116116

117117
<form id="enrollment-form" novalidate>
@@ -252,30 +252,30 @@ <h2>Complete Your Enrollment</h2>
252252
<div class="form-row">
253253
<div class="form-group">
254254
<label for="enroll-fname">First Name *</label>
255-
<input type="text" id="enroll-fname" name="fname" placeholder="John" required autocomplete="given-name" />
255+
<input type="text" id="enroll-fname" name="fname" required autocomplete="given-name" />
256256
</div>
257257
<div class="form-group">
258258
<label for="enroll-lname">Last Name *</label>
259-
<input type="text" id="enroll-lname" name="lname" placeholder="Doe" required autocomplete="family-name" />
259+
<input type="text" id="enroll-lname" name="lname" required autocomplete="family-name" />
260260
</div>
261261
</div>
262262

263263
<div class="form-row">
264264
<div class="form-group">
265265
<label for="enroll-email">Email Address *</label>
266-
<input type="email" id="enroll-email" name="email" placeholder="you@email.com" required autocomplete="email" />
266+
<input type="email" id="enroll-email" name="email" required autocomplete="email" />
267267
</div>
268268
<div class="form-group">
269269
<label for="enroll-phone">Phone Number *</label>
270-
<input type="tel" id="enroll-phone" name="phone" placeholder="+234 800 000 0000" required autocomplete="tel" />
270+
<input type="tel" id="enroll-phone" name="phone" required autocomplete="tel" />
271271
</div>
272272
</div>
273273

274274
<div class="form-row">
275275
<div class="form-group">
276276
<label for="enroll-country">Country *</label>
277277
<select id="enroll-country" name="country" required>
278-
<option value="" disabled selected>Select country...</option>
278+
<option value="" disabled selected>Select Country...</option>
279279

280280
<option value="AF">Afghanistan</option>
281281
<option value="AL">Albania</option>
@@ -550,11 +550,10 @@ <h2>Complete Your Enrollment</h2>
550550
<!-- Success Screen -->
551551
<div id="enrollment-success" class="success-screen" style="display:none;">
552552
<span class="success-icon">🎉</span>
553-
<h2>You're In! Welcome to School of Freelancing</h2>
554-
<p style="max-width:500px; margin:0 auto 24px;">Check your email inbox — your login credentials and course access link will arrive within 2 hours. If you don't see it, check spam.</p>
555-
<div style="display:flex; gap:16px; justify-content:center; flex-wrap:wrap;">
556-
<a href="courses.html" class="btn btn-primary">Browse More Courses</a>
557-
<a href="index.html" class="btn btn-outline">Back to Home</a>
553+
<h2><span>Your training enrollment successfully submitted</span></h2>
554+
<div style="display:flex; gap:16px; justify-content:center; flex-wrap:wrap;">
555+
<a href="https://t.me/SchoolOfFreelancingTraining" class="btn btn-primary" target="_blank">Get Started</a>
556+
<a href="index.html" class="btn btn-outline" target="_self">Back to Home</a>
558557
</div>
559558
</div>
560559

get_support.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979

8080

8181
<h1 data-reveal>Request Your <span style="color:var(--text-primary)">Tech Support</span></h1>
82-
<p data-reveal data-delay="100">Complete the form below to enroll. We'll send your invoice within 1 hour of payment confirmation and receive your project requirements.</p>
82+
<p data-reveal data-delay="100">Complete the form below for your support.</p>
8383
</div>
8484
</section>
8585

@@ -111,7 +111,7 @@ <h1 data-reveal>Request Your <span style="color:var(--text-primary)">Tech Suppor
111111
<div id="enrollment-form-wrap">
112112
<div class="enrollment-form-card" data-reveal data-delay="100">
113113

114-
<h2>Complete Your Enrollment</h2>
114+
<h2>Support Request Form</h2>
115115
<p>All fields marked * are required. Secure checkout — your data is protected.</p>
116116

117117
<form id="enrollment-form" novalidate>
@@ -550,11 +550,10 @@ <h2>Complete Your Enrollment</h2>
550550
<!-- Success Screen -->
551551
<div id="enrollment-success" class="success-screen" style="display:none;">
552552
<span class="success-icon">🎉</span>
553-
<h2>You're In! Welcome to School of Freelancing Support</h2>
554-
<p style="max-width:500px; margin:0 auto 24px;">Your support request has been submitted. Check your email for invoice.</p>
553+
<h2>Your support request submitted successfully</h2>
555554
<div style="display:flex; gap:16px; justify-content:center; flex-wrap:wrap;">
556-
<a href="support.html" class="btn btn-primary">Browse More Support</a>
557-
<a href="index.html" class="btn btn-outline">Back to Home</a>
555+
<a href="https://wa.me/8801748973769" class="btn btn-primary" target="_blank">Get Started</a>
556+
<a href="index.html" class="btn btn-outline" target="_self">Back to Home</a>
558557
</div>
559558
</div>
560559

index.html

Lines changed: 23 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,55 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
5+
<!-- Basic Meta -->
46
<meta charset="UTF-8">
57
<meta name="viewport" content="width=device-width, initial-scale=1.0">
68
<title>#1 Linux Freelancing Training & Tech Support | School of Freelancing</title>
79

810
<!-- SEO Meta Tags -->
9-
<meta name="description" content="#1 rated Linux freelancing training & cloud support. 819+ students, 98% success rate, GMI guaranteed. Instructor-led, 90+ hands-on modules.">
11+
<meta name="description" content="#1 rated Linux freelancing training & tech support. AI-Powered Linux Training & Tech Support Worldwide">
1012
<meta name="author" content="School of Freelancing">
11-
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
12-
<meta name="language" content="English">
13-
<meta name="revisit-after" content="7">
13+
<meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
14+
<meta name="robots" content="index, follow">
15+
<meta name="referrer" content="strict-origin-when-cross-origin">
1416

1517
<!-- Canonical -->
1618
<link rel="canonical" href="https://www.schooloffreelancing.com/">
1719

1820
<!-- Mobile & Accessibility -->
1921
<meta name="theme-color" content="#00ff41">
2022
<meta name="apple-mobile-web-app-capable" content="yes">
21-
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
23+
<meta name="apple-mobile-web-app-status-bar-style" content="default">
24+
25+
<!-- Favicon -->
26+
<link rel="icon" href="./images/favicon.ico">
27+
<link rel="apple-touch-icon" href="./images/apple-touch-icon.png">
28+
29+
<!-- Verification Tags -->
30+
<meta name="google-site-verification" content="YOUR_CODE">
31+
<meta name="msvalidate.01" content="YOUR_CODE">
32+
<meta name="yandex-verification" content="YOUR_CODE">
33+
<meta name="facebook-domain-verification" content="YOUR_CODE">
2234

2335
<!-- Open Graph / Facebook -->
2436
<meta property="og:type" content="website">
2537
<meta property="og:url" content="https://www.schooloffreelancing.com/">
2638
<meta property="og:title" content="Linux Freelancing Training & Cloud Support | School Of Freelancing">
27-
<meta property="og:description" content="#1 rated Linux freelancing training & cloud support. 819+ students, 98% success rate, GMI guaranteed. 90+ hands-on modules.">
39+
<meta property="og:description" content="Build real-world tech skills, complete hands-on projects, and launch your freelancing career with expert-led training.">
2840
<meta property="og:image" content="https://www.schooloffreelancing.com/images/og-home.jpg">
2941
<meta property="og:image:width" content="1200">
3042
<meta property="og:image:height" content="630">
3143
<meta property="og:image:type" content="image/jpeg">
32-
<meta property="og:image:alt" content="School Of Freelancing - #1 Linux Freelancing Training & Professional Cloud Support">
33-
<meta property="og:locale" content="en_US">
44+
<meta property="og:image:alt" content="School Of Freelancing - #1 Linux Freelancing Training & Professional Tech Support">
45+
<meta property="og:locale" content="en">
3446
<meta property="og:site_name" content="School Of Freelancing">
3547

3648
<!-- Twitter Card -->
3749
<meta name="twitter:card" content="summary_large_image">
3850
<meta name="twitter:url" content="https://www.schooloffreelancing.com/">
39-
<meta name="twitter:title" content="Linux Freelancing Training & Cloud Support | School Of Freelancing">
40-
<meta name="twitter:description" content="#1 Linux freelancing training. 819+ students, 98% success rate. Enroll in hands-on training today!">
51+
<meta name="twitter:title" content="Linux Freelancing Training & Tech Support | School Of Freelancing">
52+
<meta name="twitter:description" content="#1 Linux freelancing training & Tech Support. Master job-ready tech skills with practical online training and real-world projects. Start your freelancing journey today.">
4153
<meta name="twitter:image" content="https://www.schooloffreelancing.com/images/og-home.jpg">
4254
<meta name="twitter:creator" content="@FreelancingOf">
4355

@@ -53,7 +65,7 @@
5365
"url": "https://www.schooloffreelancing.com",
5466
"logo": "https://www.schooloffreelancing.com/images/sof-icon-color.png",
5567
"image": "https://www.schooloffreelancing.com/images/og-home.jpg",
56-
"description": "School of Freelancing: #1 Linux freelancing training & cloud support platform. 819+ students, 98% success rate, GMI guaranteed.",
68+
"description": "School of Freelancing: #1 Linux freelancing training & Tech Support. Master Linux skills with practical online training and real-world projects. Start your freelancing journey today.",
5769
"foundingDate": "2019-06-06",
5870
"contactPoint": {
5971
"@type": "ContactPoint",

training.html

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8"/>
4+
5+
<!-- Basic Meta -->
6+
<meta charset="UTF-8">
57
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<meta name="description" content="Explore 20+ hands-on Linux, DevOps, AI, VoIP & SMS training programs at School of Freelancing. 819+ students trained, 98% success rate. Linux freelancing, GitLab, Telnyx, Twilio & more.">
7-
<meta name="keywords" content="linux training, devops training, AI agent training, VoIP training, SMS training, linux freelancing course, sysadmin training, cloud infrastructure training, online linux certification">
8-
<meta name="title" content="All Training Programs | 20+ Courses | School of Freelancing">
9-
<title>All Training Programs | 20+ Courses | School of Freelancing | Linux & DevOps</title>
8+
9+
<!-- SEO -->
10+
<title>Linux Freelancing Training | Built by Freelancers, For Freelancers</title>
11+
<meta name="description" content="Learn in-demand freelancing skills through hands-on online training in Linux, AI, cloud, VoIP, web hosting, and digital technologies. Built by freelancers, for freelancers.">
12+
13+
14+
<meta name="title" content="Linux Freelancing Training | Built by Freelancers, For Freelancers">
15+
1016
<meta name="author" content="School of Freelancing">
1117
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
1218
<meta name="language" content="English">
@@ -135,7 +141,7 @@
135141
<!-- PAGE HERO -->
136142
<section class="page-hero" aria-label="Training programs hero">
137143
<div class="container">
138-
<h1 data-reveal>Built by Freelancers,<br><span style="color:var(--text-primary)">For Freelancers</span></h1>
144+
<h2 data-reveal><span style="color:var(--text-primary)">Built by Freelancers, For Freelancers</span></h2>
139145
</div>
140146
</section>
141147

0 commit comments

Comments
 (0)