forked from AditiDiti/HelpingHands2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
education.html
123 lines (113 loc) · 4.12 KB
/
education.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="education.css">
</head>
<body>
<div class="loader-container" id="loader-container">
<div class="loader"></div>
</div>
<div class="content" id="content" style="display:none;">
<div class="othercourses">
<h2>Courses you may like...</h2>
<div class="courses">
<button type="submit">Teaching</button>
<button type="submit">Sewing</button>
<button type="submit">Carpainter</button>
<button type="submit">Industrial Work</button>
<button type="submit">Painter</button>
<button type="submit">Mechanic</button>
<button type="submit">Explore more</button>
</div>
</div>
<div class="courses">
<section class="section">
<h3>Course near you </h3>
<p>as of today</p>
</section>
</div>
<div class="container">
<section class="job-listings">
<ul>
<li class="job-card">
<a href="#">
<h3>Naaz Unisex Salon</h3>
<p>Within 1.7kms</p>
<span class="location">No fee,</span>
<span class="job-type">Certified</span>
</a>
<button type="submit">Enquire</button>
</li>
</ul>
</section>
<section class="job-listings">
<ul>
<li class="job-card">
<a href="#">
<h3>Samaira Beautician</h3>
<p>4km away</p>
<span class="location">Reasonable fees,</span>
<span class="job-type">Certifieed/Non-certified</span>
</a>
<button type="submit">Enquire</button>
</li>
</ul>
</section>
<section class="job-listings">
<ul>
<li class="job-card">
<a href="#">
<h3>Kimaya Beauty Parlour(ladies)</h3>
<p>7km far away</p>
<span class="location">Rs500/month,</span>
<span class="job-type">Certified</span>
</a>
<button type="submit">Enquire</button>
</li>
</ul>
</section>
<section class="job-listings">
<ul>
<li class="job-card">
<a href="#">
<h3>Magic Unisex Salon</h3>
<p>12km away from you</p>
<span class="location">No fees,</span>
<span class="job-type">Both certified and Non certified</span>
</a>
<button type="submit">Enquire</button>
</li>
</ul>
</section>
<section class="job-listings">
<ul>
<li class="job-card">
<a href="#">
<h3>Looks Salon and Academy</h3>
<p>Within 25km</p>
<span class="location">Rs900/month,</span>
<span class="job-type">Certified</span>
</a>
<button type="submit">Enquire</button>
</li>
</ul>
</section>
</div>
</div>
<script>
//Loader Script
document.addEventListener('DOMContentLoaded', function() {
setTimeout(function() {
const loaderContainer = document.getElementById('loader-container');
const content = document.getElementById('content');
loaderContainer.style.display = 'none';
content.style.display = 'block';
}, 1000);
});
</script>
</body>
</html>