-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
68 lines (60 loc) · 3.21 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Circle</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<link href="https://fonts.googleapis.com/css2?family=Tajawal:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="https://img.icons8.com/fluency/48/circled.png">
<link rel="stylesheet" href="styles.css"> <!-- Added a link to an external stylesheet -->
</head>
<body>
<div class="header">
<h1 class="animate__animated animate__fadeInDown">Circle</h1>
<p class="lead animate__animated animate__fadeInUp">استكشف تمارين مدرسية رائعة وساهم في تطوير مهاراتك</p>
<a href="https://visitcount.itsvg.in">
<img src="https://visitcount.itsvg.in/api?id=Circle&label=Website%20Views&color=0&icon=5&pretty=false" />
</a>
</div>
<div class="footer text-center mt-4">
<p>عدد الملفات المرفوعة: <span id="documentCount">0</span></p>
</div>
<div class="container">
<section>
<h2 class="text-center mb-4 animate__animated animate__fadeInDown">التمارين</h2>
<!-- Filter containers for selecting term and subject -->
<div class="filter-container mb-4">
<label for="termSelect">اختر الشعبة:</label>
<select id="termSelect" class="form-control">
<option value="all">الكل</option>
<!-- Add more term options as needed -->
</select>
<label for="subjectSelect">اختر المادة:</label>
<select id="subjectSelect" class="form-control">
<option value="all">الكل</option>
<!-- Add more subject options as needed -->
</select>
<!-- Add the search box -->
<div class="input-group">
<input type="text" id="searchInput" class="form-control" placeholder="ابحث عن تمرين...">
<div class="input-group-append">
<button class="btn btn-outline-secondary" type="button" id="searchButton">
<i class="fas fa-search"></i>
</button>
</div>
</div>
</div>
<div id="exerciseCards" class="row">
<!-- Exercise cards will be dynamically added here -->
</div>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="script.js"></script> <!-- Added a link to an external script -->
</body>
</html>