forked from GCA-Classroom/WD-LL7-DuoLingo-Student-Starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (95 loc) · 3.24 KB
/
index.html
File metadata and controls
102 lines (95 loc) · 3.24 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Duolingo Game Logic – Team Prototype</title>
<!-- Bootstrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container">
<a class="navbar-brand" href="#">
<span class="navbar-logo">🦉</span>
<span class="navbar-title">duolingo</span>
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="#">LEARN</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">PRACTICE</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">LEADERBOARDS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">SHOP</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-section">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<h1 class="hero-title">
The free, fun, and effective way to learn!
</h1>
<p class="hero-subtitle">
Dev Shop Challenge: Build logic that reacts to learner progress
</p>
<div class="hero-badges">
<span class="badge-pill">🔥 Learn with fun</span>
<span class="badge-pill">⚡ Track your progress</span>
<span class="badge-pill">🎯 Reach your goals</span>
</div>
</div>
<div class="col-lg-6 text-center">
<div class="hero-owl">🦉</div>
</div>
</div>
</div>
</section>
<!-- Learner Progress Section -->
<section class="progress-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<div class="card p-4 shadow-sm">
<!-- Progress Display -->
<h2 class="h5 mb-3">Learner Progress</h2>
<p>Total XP: <span id="xp-total">0</span></p>
<!-- Action Button -->
<button id="complete-lesson" class="btn btn-success w-100 mb-3">
Complete Lesson
</button>
<!-- Feedback -->
<div id="feedback" class="text-center fw-semibold mt-2"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Bootstrap JS for navbar toggle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>