-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
165 lines (149 loc) Β· 4.83 KB
/
index.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
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
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/skeleton.css" />
<link rel="stylesheet" href="./css/style.css" />
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<title>Shiksha.</title>
<script src="https://cdn.jsdelivr.net/gh/dixonandmoe/rellax@master/rellax.min.js"></script>
<link rel="icon" href="./img/logo.svg" type="image/svg" />
</head>
<body>
<div class="container">
<div class="fixed">
<nav>
<div class="nav">
<div class="left">
<a href="./index.html">
<img src="./img/logo.svg" alt="Shiksha." class="logo">
</a>
</div>
<div>
<div class="right">
<a href="./features.html">Features</a>
<a href="./about.html">About</a>
<a href="./register.html">Register</a>
<a href="./branding.html">Branding</a>
</div>
<div id="navicon">
<img id="lines" src="./img/menu.svg" alt="">
<img id="close" src="./img/close.svg" alt="">
</div>
</div>
</div>
<div class="mobnav">
<ul>
<li><a href="./features.html">Features</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./register.html">Register</a></li>
<li><a href="./branding.html">Branding</a></li>
</ul>
</div>
</nav>
</div>
</div>
<section id="landing" class="onindex">
<img src="./img/squiggle/ellipse.svg" class="ellipse rellax" data-rellax-speed="3" alt="">
<img src="./img/squiggle/half.svg" class="half rellax" data-rellax-speed="5" alt="">
<img src="./img/squiggle/rect.svg" class="rect rellax" data-rellax-speed="-4" alt="">
<img src="./img/squiggle/square.svg" class="square rellax" data-rellax-speed="-2" alt="">
<img src="./img/squiggle/stairs.svg" class="stairs rellax" data-rellax-speed="7" alt="">
<div class="container">
<div class="flex-center">
<div class="seven columns">
<h1 class="big center zero mainhead">
<span>A new way to <span class="ticker"></span></span><span class="orange">.</span>
</h1>
<h4 class="center">
<i>Shiksha.</i>
</h4>
<div class="flex-center">
<a href="./features.html">
<button class="cool">Learn more</button>
</a>
</div>
</div>
</div>
<div class="u-cf"></div>
</div>
</section>
<img src="./img/bluebg.svg" alt="">
<section id="info2" class="indexpage">
<div class="container">
<div class="row">
<div class="seven columns interactone">
<h1 class="big med white">Interact</h1>
<h5 class="white">
Interact in ways that weren't possible before <i>Shiksha</i>. With our new quantum quantum biotechnical
quantum technology, you can now experience holograms right with your generic phone camera. No expensive
purchase needed!
</h5>
</div>
<div class="five columns">
<img src="./img/hologram.svg" alt="" draggable="false"
style="border-radius: 0.5em; margin-top: 1em; margin-bottom: 3em;">
</div>
</div>
</div>
</section>
<img src="./img/flippedblue.svg" alt="">
<section id="application">
<div class="container">
<div class="five columns">
<img src="./img/mock.png" class="mockup" draggable="false" alt="">
</div>
<div class="seven columns">
<h1 class="big med">
App
</h1>
<h5>Our application, supported on both mobile and desktop devices, allows users to use their phones to the full
capacity for learning. Explore courses, teachers, and learn together with friends.</h5>
</div>
<div class="u-cf"></div>
</div>
</section>
<img src="./img/topwhite.svg" alt="" style="margin-top: -13em;">
<section id="courses">
<div class="container">
<div class="seven columns">
<h1 class="big med">
Courses
</h1>
<h5>
Gain extra knowledge with our pro plan and browse courses on all topics by some of the best teachers ever.
Masterclass teachers like Mithun Da and <a href="//siddhayak.co" target="_blank">Siddhayak Goyal</a> teach you
skills from dance to design.
</h5>
</div>
<div class="five columns">
<img src="./img/courses.svg" draggable="false" alt="" class="courses">
</div>
<div class="u-cf"></div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="six columns">
<p class="zero">
<a href="//github.com/arhaanb/shiksha" target="_blank">
<img src="./img/github.svg" class="icon" alt="GitHub"> Source
</p>
</a>
</div>
<div class="six columns">
<p class="zero righttext">
<a href="//minet.co" target="_blank">
Made with <img src="./img/heart.svg" class="icon" alt="Love"> by Team MINET
</a>
</p>
</div>
</div>
</footer>
<script src="./js/main.js"></script>
<script type="text/javascript">
var rellax = new Rellax('.rellax');
</script>
</body>
</html>