-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (55 loc) · 2.03 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
<!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>Maktab</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/style.css">
</head>
<body onload="loaded()" onkeyup="keyUp(event)">
<div class="wrapper">
<div class="section">
<!-- ASIDE -->
<aside class="sidebar">
<h2 class="sidebar__title">Maktab</h2>
<ul>
<li><a class="active active-dark" href="./index.html">Bosh sahifa</a></li>
<li><a href="./teachers.html">O'qituvchilar</a></li>
<li><a href="./students.html">O'quvchilar</a></li>
<li><a href="./staffes.html">Xodimlar</a></li>
<li><a href="./sciences.html">Fanlar</a></li>
<li><a href="./rooms.html">Xonalar</a></li>
<li><a href="./lessons.html">Dars jadvallari</a></li>
</ul>
</aside>
<!-- ASIDE-END -->
<!-- MAIN-RIGHT -->
<main class="rightside">
<!-- NAVBAR-START -->
<header class="navbar">
<button class="btn" onclick="toggleSidebar()"><i class="fas fa-bars fa-2xl"></i></button>
<div class="darkMode">
<button class="darkBtn">Kun / Tun</button>
</div>
</header>
<!-- NAVBAR-END -->
<!-- CONTENT-CARDS-START -->
<section class="content">
<div class="content__title">
<h2 class="title__text">Bosh sahifa</h2>
</div>
<div class="cards cards-style"></div>
</section>
<!-- CONTENT-CARDS-END -->
</main>
<!-- MAIN-RIGHT-END -->
</div>
</div>
<script src="./js/global.js"></script>
<script src="./js/index.js"></script>
</body>
</html>