-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
185 lines (182 loc) · 5.76 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ELearning Platform</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body>
<!-- Header -->
<section class="header">
<div class="overlay show"></div>
<div class="container">
<span id="hamburger" class="">
<span></span>
<span></span>
<span></span>
</span>
<div class="nav">
<div class="logo">
<a href=""> GlobalTalk </a>
</div>
<ul class="nav-list show">
<li class="act"><a href="#">Main</a></li>
<li><a href="#">Guide</a></li>
<li><a href="#">Statistics</a></li>
<li>
<a href="#"
>Games <i id="down" class="fa-solid fa-chevron-down"></i
></a>
</li>
<li class="opt op1 active"><a href="#">Sprint</a></li>
<li class="opt op2 active"><a href="#">Audio-call</a></li>
</ul>
</div>
<div class="compte">
<div class="profile">
<span>Alex <i class="fa-solid fa-chevron-down"></i></span>
</div>
<!-- <div class="reg">
<button>Login</button>
<button>Sign up</button>
</div> -->
</div>
</div>
</section>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="content">
<div class="content-title">E-COURSE PLATFORM</div>
<h1>Learning and teaching online, made easy.</h1>
<p>Practice and learn new things with the platform.</p>
<div class="aboutp-btn">
<a href="">About platform</a>
</div>
<div class="stat">
<div class="pop-w">
<div>
<img src="images/vector.svg" alt="" />
<span>600<span class="plus">+</span> </span>
</div>
<div class="title">Popular words</div>
</div>
<div class="line"></div>
<div class="mini-gam">
<div>
<img src="images/hug.svg" alt="" />
<span>2<span class="plus">+</span> </span>
</div>
<div class="title">Mini-games</div>
</div>
</div>
</div>
<div class="pics">
<img src="images/boybook.png" alt="" />
<!-- <img src="images/image 6.png" alt="" />
<img src="images/image 12.svg" alt="" /> -->
</div>
</div>
</section>
<section class="learn-lang">
<div class="container">
<div class="image">
<img src="images/image 8.png" alt="" />
</div>
<div class="content">
<h2>Learn a language in a playful way</h2>
<p>Make learning words more fun with mini-games</p>
<div class="cards">
<div class="card sprint">
<img src="images/image 10.svg" alt="" />
<a href="">Sprint →</a>
</div>
<div class="card audiocall">
<img src="images/Group 9.png" alt="" />
<a href="">Audio-call →</a>
</div>
</div>
</div>
</div>
</section>
<!-- vocabulary section -->
<section class="vocabulary learn-lang">
<div class="container">
<div class="content">
<h2>Increase your vocabulary</h2>
<p>Traditional and new effective approaches to word study</p>
<div class="textbook">
<a href="">
Textbook →
</a>
</div>
</div>
<div class="image">
<img src="images/image 2.png" alt="" />
</div>
</div>
</section>
<!-- progress section -->
<section class="progress learn-lang">
<div class="container">
<div class="image">
<img src="images/image 1.png" alt="" />
</div>
<div class="content">
<h2>Watch your progress every day</h2>
<p>Save statistics on your achievements, words learned, and mistakes</p>
<div class="textbook">
<a href="">
Statistics →
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<section class="footer">
<div class="container">
<div class="part1">
<div class="links">
<ul>
<li><a href="">Home</a></li>
<li><a href="">Textbook</a></li>
<li><a href="">Statistics</a></li>
<li><a href="">Sprint</a></li>
<li><a href="">Audio-call</a></li>
</ul>
</div>
<div class="pers">
<ul>
<li><a href="">Alex</a></li>
<li><a href="">Gabriel</a></li>
<li><a href="">Marcus</a></li>
</ul>
</div>
</div>
<div class="line">
</div>
<div class="part2">
<div class="sm">
<img src="images/Frame 30.svg" alt="">
<img src="images/GT.png" alt="">
<img src="images/youtube.png" alt="">
</div>
<div class="copyright">
©2023 Slimane. Project for GlobalTalk.
</div>
</div>
</div>
</section>
</body>
<script src="script.js"></script>
</html>