-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlearn-skills.php
93 lines (53 loc) · 3.62 KB
/
learn-skills.php
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
<!doctype html>
<html lang="en">
<head>
<title>Learn Skills</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--styles css-->
<?php include_once "styles.php"; ?>
<!--styles css-->
</head>
<body style="background-color:#F4F4F4;">
<!--navbar-->
<?php include_once "header.php"; ?>
<!--end of navbar-->
<?php include_once "cover.php";?>
<div class="container-fluid my-2">
<div class="row">
<!--left col --> <div class="col-md-1"></div> <!--left col -->
<div class="col-md-10">
<!-- start your code from here-->
<!-- job seekers -->
<div class="container-fluid my-2 bg-white">
<h3 class="pt-2">Learn Skills</h3><hr>
lorem ipsum is a filler text or greeking commonly used to demonstrate the textual elements of a graphic document or visual presentation. Replacing meaningful content with placeholder text allows designers to design the form of the content before the content itself has been produced.
lorem ipsum is a filler text or greeking commonly used to demonstrate the textual elements of a graphic document or visual presentation. Replacing meaningful content with placeholder text allows designers to design the form of the content before the content itself has been produced.<br><br>
<h5>Popular Categories</h5>
<div class="row ">
<div class="col-md"><div class="row"><div class="col-md-4"><img src="images/learn-skill-1.jpg" class="img-fluid h-100 w-100" ></div><div class="col-md text-muted" ><b>Management Studies</b><br>Leadership<br>Project Management<br>Management<br><a href="#">more</a></div></div></div>
<div class="col-md"><div class="row"><div class="col-md-4"><img src="images/learn-skill-3.jpg" class="img-fluid h-100 w-100" ></div><div class="col-md text-muted" ><b>Business Studies</b><br>Leadership<br>Project Management<br>Management<br><a href="#">more</a></div></div></div>
<div class="col-md"><div class="row"><div class="col-md-4"><img src="images/learn-skill-2.jpg" class="img-fluid h-100 w-100" ></div><div class="col-md text-muted" ><b>Social Studies</b><br>Leadership<br>Project Management<br>Management<br><a href="#">more</a></div></div></div>
</div>
<br>
<div class="row ">
<div class="col-md"><div class="row"><div class="col-md-4"><img src="images/learn-skill-2.jpg" class="img-fluid h-100 w-100" ></div><div class="col-md text-muted" ><b>Technology Studies</b><br>Leadership<br>Project Management<br>Management<br><a href="#">more</a></div></div></div>
<div class="col-md"><div class="row"><div class="col-md-4"><img src="images/learn-skill-1.jpg" class="img-fluid h-100 w-100" ></div><div class="col-md text-muted" ><b>Aviation Studies</b><br>Leadership<br>Project Management<br>Management<br><a href="#">more</a></div></div></div>
<div class="col-md"><div class="row"><div class="col-md-4"><img src="images/learn-skill-3.jpg" class="img-fluid h-100 w-100" ></div><div class="col-md text-muted" ><b>Humanities Studies</b><br>Leadership<br>Project Management<br>Management<br><a href="#">more</a></div></div></div>
</div>
</div>
<br>
</div>
</div>
<!-- End your code here-->
</div>
<!--right col --> <div class="col-md-1"></div> <!--right col -->
</div>
<!--footer-->
<?php include_once "footer.php"; ?>
<!-- end of footer-->
</div>
<?php include_once "script.php"; ?>
</body>
</html>