-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodal.html
More file actions
127 lines (116 loc) · 5.7 KB
/
modal.html
File metadata and controls
127 lines (116 loc) · 5.7 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
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
</head>
<body>
<!-- Button trigger modal
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
Launch demo modal
</button>
<!-- Modal -->
<!-- <div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="exampleModalLabel">Modal title</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div> -->
</div> -->
<!-- <div id="carouselExampleSlidesOnly" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="..." class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="..." class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="..." class="d-block w-100" alt="...">
</div>
</div>
</div> -->
<script src="./js/bootstrap.min.js"></script>
</body>
</html> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="row">
<div class="col-12">
<div class="text-center">
<h2 class="fw-700 mb-lg-4 mb-2 w-75 mx-auto"> Build Your Career, Your Way
</h2>
<p class="fs-18 fw-400 label-color-1"> Choose from live online courses, classroom training, or self-paced online programs.
</p>
</div>
</div>
<div class="col-12 pt-lg-5 pt-4">
<div class="row align-items-stretch justify-content-center">
<div class="col-lg-4 mb-3">
<a class="career-card d-block decoration-none" title="Live Online Courses" href="training-courses.html#online-courses">
<div class="card-image overflow-hidden">
<img src="images/classroom-training.webp" class="img-fluid w-100" height="250" alt="Image">
</div>
<div class="p-3 d-flex flex-column">
<h3 class="mb-2 mb-lg-3 lh-24 label-color-2 fs-20 fw-600 mt-2">Live Online Courses</h3>
<p class="fw-400 fs-16 lh-26 label-color-1 mb-3 mb-lg-4"> Online courses with regular live classes by professional mentors, certification, hands-on projects, and job assistance.
</p>
<div class="mt-auto">
<span class="fs-14 cursor-pointer fw-600 text-decoration-none label-color-1 read-more text-uppercase" title="Get Started">Get Started <i class="fas fa-arrow-right ms-1"></i></span>
</div>
</div>
</a>
</div>
<div class="col-lg-4 mb-3">
<a class="career-card d-block decoration-none" title="Classroom/Offline Courses" href="training-courses.html#offline-courses">
<div class="card-image overflow-hidden">
<img src="images/online-live-training.webp" class="img-fluid w-100" height="250" alt="Image">
</div>
<div class="p-3 d-flex flex-column">
<h3 class="mb-2 mb-lg-3 lh-24 label-color-2 fs-20 fw-600 mt-2">Classroom/Offline Courses</h3>
<p class="fw-400 fs-16 lh-26 label-color-1 mb-3 mb-lg-4">Rigorous offline training in fully-digitized and distraction-free classrooms at our skill centers in Jodhpur and Jaipur.</p>
<div class="mt-auto">
<span class="fs-14 cursor-pointer fw-600 text-decoration-none label-color-1 read-more text-uppercase" title="Get Started">Get Started <i class="fas fa-arrow-right ms-1"></i></span>
</div>
</div>
</a>
</div>
<div class="col-lg-4 mb-3">
<a class="career-card d-block decoration-none" title="Self-Paced Courses" href="https://courses.wscubetech.com/">
<div class="card-image overflow-hidden">
<img src="images/self-placed.webp" class="img-fluid w-100" height="250" alt="Image">
</div>
<div class="p-3 d-flex flex-column">
<h3 class="mb-2 mb-lg-3 lh-24 label-color-2 fs-20 fw-600 mt-2">Self-Paced Courses
</h3>
<p class="fw-400 fs-16 lh-26 label-color-1 mb-3 mb-lg-4"> Pre-recorded self-paced courses curated by industry experts. The affordable learning experience with professional certification.
</p>
<div class="mt-auto">
<span class="fs-14 cursor-pointer fw-600 text-decoration-none label-color-1 read-more text-uppercase" title="Get Started">Get Started <i class="fas fa-arrow-right ms-1"></i></span>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</body>
</html>