-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.php
More file actions
154 lines (144 loc) · 4.63 KB
/
features.php
File metadata and controls
154 lines (144 loc) · 4.63 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
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
<!DOCTYPE html>
<html>
<head>
<title>features</title>
<link rel="stylesheet" type="text/css" href="./bootstrap.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link href="https://fonts.googleapis.com/css?family=Poppins&display=swap" rel="stylesheet">
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" type="text/css" href="features.css">
</head>
<body>
<!-- nav bar -->
<nav class="navbar navbar-invert navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-links" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./index.php">
<img width="40" alt="Brand"src="./image./index/logo.png">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar-links">
<ul id="links" class="nav navbar-nav navbar-right">
<li> <a href="./about.php">ABOUT</a></li>
<li> <a class="active" href="./features.php">FEATURES</a></li>
<li> <a href="./blogs.php">BLOGS</a></li>
<li> <a href="./contact-us.php">CONTACT US</a></li>
<li> <a href="./account.php">ACCOUNT</a></li>
<li id="signIn"> <a href="./sign-in.php">SIGN IN</a></li>
</ul>
</div>
</div>
</nav>
<!-- nav bar ends -->
<!-- section 1 -->
<div class="sections section1">
</div>
<!-- section 2 -->
<div class="sections section2">
<div class="row">
<div class="col-xs-6 content">
<ul>
<div >
<li>
<h4>Courses are grouped in categories which you can see in the homepage.</h4> </li>
<li><h4>Find your profile section on top-right where you can check your badges earned and completed courses.</h4>
</li>
<li>
<h4>Resume takes you to your incomplete courses.</h4>
</li>
<li> <h4>Find your Bookmarked courses in Favourites.</h4>
</li>
</div>
</ul>
</div>
<div class="col-xs-6">
<img class="corners"src="./image./features/features1.png">
</div>
</div>
<div class="row">
<div class="col-xs-6">
<img class="corners"src="./image./features/features2.png">
</div>
<div class="col-xs-6 content left">
<ul>
<div>
<li>
<h4>Every course contains multiple cards which can be swiped vertically</h4></li>
<li> <h4>You can locate your position in the course</h4>
</li>
<li>
<h4>Bookmark your favourite courses to visit later</h4></li>
<li> <h4>Percent completed is reflected in the course menu too</h4>
</li>
</div>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-6 content">
<ul>
<div>
<li>
<h4>At the end of every course, you are presented with a summary highlighting key points</h4>
</li>
<li>
<h4>The quiz will take 2-5 minutes and will have multiple choices</h4>
</li>
<li>
<h4>Every course completion rewards you 25 xp. 100 xp points get you a badge.</h4>
</li>
<li> <h4>Your complete profile information will be available on website too upon login.</h4>
</li>
</div>
</ul>
</div>
<div class="col-xs-6">
<img class="corners"src="./image./features/features3.png">
</div>
</div>
</div>
<!-- site map -->
<div class="site-map">
<footer >
<div id="foot"class="container">
<div class="row">
<div class="col-sm-5 pink">
<div class="logo">
<img style="width: 100%;" src="./image./index/purple.png">
</div>
<h6 style="margin: 0 auto;">Address: Lorem ipsum dolor sit amet,eu quidam omnesque pro. Incum salutandi gubergren </h6>
</div>
<div class="col-sm-2 ">
<h6 >COMPANY</h6>
<a href="./index">Home Page</a> <br>
<a href="#">Discover</a> <br>
<a href="./about.php">About us</a>
</div>
<div class="col-sm-2 ">
<h6 >INFORMATION</h6>
<a href="./sign-in.php">Creat Accounts</a> <br>
<a href="#">Careers</a>
</div>
<div class="col-sm-2 ">
<h6 >LEGAL</h6>
<a href="#">Privacy Policy</a> <br>
<a href="#">Cookie Policy</a> <br>
<a href="#">Terms of Usage</a>
</div>
<div class="col-sm-1">
</div>
</div>
</div>
</footer>
</div>
<!-- site map ends -->
</body>
</html>