-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearn.html
118 lines (117 loc) · 4.58 KB
/
learn.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>हस्तBoli-HastBoli</title>
<link rel="stylesheet" href="/homepage.css" />
<!-- Compiled and minified CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
</head>
<body>
<div class="main-flex-container z-depth-4 ">
<div class="nav-bar z-depth-2 ">
<a href="/"
><h1 class="main-heading brand-logo white-text">हस्तBoli</h1></a
>
<div class="nav-bar-items">
<div class="item waves-effect waves-light hoverable playground">
<a class="white-text" href="/playground">Playground</a>
</div>
<div class="item waves-effect waves-light hoverable team">
<a class="white-text" href="/team">Team</a>
</div>
<div class="item waves-effect waves-light hoverable sign-up">
<a class="white-text" href="/sign_up">Sign Up</a>
</div>
<div class="item waves-effect waves-light hoverable sign-in">
<a class="white-text" href="/sign_in">Sign In</a>
</div>
<div class="item waves-effect waves-light hoverable sign-in">
<a class="white-text" href="/learn">Learn</a>
</div>
</div>
</div>
<div class="main-content">
<div class="row">
<div class="col s12 m6">
<div class="card amber darken-2 hoverable">
<div class="card-content white-text">
<span class="card-title">Indian Sign Language Alphabet</span>
<p>
Get familiar with the basics of ISL by learning how to communicate through alphabets.
</p>
</div>
<div class="card-action">
<a href="#" class='course-link white-text'>Learn</a>
</div>
</div>
<div class="card amber darken-2 hoverable">
<div class="card-content white-text">
<span class="card-title">Basic Words 1</span>
<p>
Learn some basic words to express yourself better in ISL.
</p>
</div>
<div class="card-action">
<a href="#" class="course-link white-text">Learn</a>
</div>
</div>
</div>
<div class="col s24 m6">
<div class="card amber darken-2 hoverable">
<div class="card-content white-text">
<span class="card-title">Indian Sign Language Alphabets-2</span>
<p>
Get familiar with the basics of ISL by learning how to communicate through alphabets.
</p>
</div>
<div class="card-action">
<a href="#" class="course-link white-text">Learn</a>
</div>
</div>
<div class="card amber darken-2 hoverable">
<div class="card-content white-text">
<span class="card-title">Basic Words 2</span>
<p>
Learn some more basic words to express yourself better in ISL.
</p>
</div>
<div class="card-action">
<a href="#" class="course-link white-text">Learn</a>
</div>
</div>
<div class="card amber darken-2 hoverable">
<div class="card-content white-text">
<span class="card-title">Food and Weather</span>
<p>
Learn basic words for expressing thoughts and ideas related to food and weather.
</p>
</div>
<div class="card-action">
<a href="#" class="course-link white-text">Learn</a>
</div>
</div>
</div>
<script src="/learn.js"></script>
</div>
</div>
<div class="extra-information">
Made with ❤️ in Chandigarh, India
</div>
<script src="/check_session.js"></script>
<script>
//write script here to add '(completed)' to a card title if total==progress in database
</script>
</body>
</html>