-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsaved_video.html
138 lines (128 loc) · 5.42 KB
/
saved_video.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
<!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>DIKSHA home</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="courses.css">
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<script src="https://kit.fontawesome.com/67c66657c7.js"></script>
</head>
<body>
<div class="sidebar">
<div class="logo_content">
<div class="logo">
<i></i>
<div class="logo_name">DIKSHA</div>
</div>
<i class="bx bx-menu" id="btn"></i>
</div>
<ul class="nav_links">
<li>
<a href="https://codebooter.github.io/Diksha-lite/home.html">
<i class="bx bx-grid-alt"></i>
<span class="link_name">Dashboard</span></a
>
<span class="tooltip">Dashboard</span>
</li>
<li>
<a href="https://codebooter.github.io/Diksha-lite/profile.html">
<i class="bx bx-user"></i>
<span class="link_name">Profile</span></a
>
<span class="tooltip">Profile</span>
</li>
<li>
<a href="https://codebooter.github.io/Diksha-lite/courses.html">
<i class="bx bx-book-reader"></i>
<span class="link_name">Courses</span></a
>
<span class="tooltip">Courses</span>
</li>
<li>
<a href="https://codebooter.github.io/Diksha-lite/saved_video.html">
<i class="bx bx-bookmark-plus"></i>
<span class="link_name">Saved Videos</span></a
>
<span class="tooltip">Saved Videos</span>
</li>
<li>
<a href="https://codebooter.github.io/Diksha-lite/study.html">
<i class="bx bx-book"></i>
<span class="link_name">Study material</span></a
>
<span class="tooltip">Study material</span>
</li>
<li>
<a href="https://codebooter.github.io/Diksha-lite/leaderboard.html">
<i class="bx bx-bar-chart-alt-2"></i>
<span class="link_name">Leader Board</span></a
>
<span class="tooltip">Leader Board</span>
</li>
<li>
<a href="https://codebooter.github.io/Diksha-lite/quiz/quiz.html">
<i class='bx bx-brain'></i>
<span class="link_name">Quiz</span></a>
<span class="tooltip">Quiz</span>
</li>
<li>
<a href="https://codebooter.github.io/Diksha-lite/help_desk.html">
<i class="bx bx-help-circle"></i>
<span class="link_name">Help desk</span></a
>
<span class="tooltip">Help desk</span>
</li>
<li>
<a href="https://codebooter.github.io/Diksha-lite/index.html">
<i class="bx bx-log-out-circle"></i>
<span class="link_name">Log out</span></a
>
<span class="tooltip">Log out</span>
</li>
</ul>
</div>
<div class="home_content">
<nav class="logo_next"><img src="https://codebooter.github.io/Diksha-lite/newdikshaevidyalogo.ico" alt="">
<div class="Searchbar"><input type="Search" placeholder="Search here....">
<span class="fa fa-search"></span>
</div>
</nav>
<div class="course_body"> <main>
<section>
<iframe class="embeddedObject shadow resizable" name="embedded_content" scrolling="no" frameborder="0" type="text/html"
style="overflow:hidden;" src="https://www.screencast.com/users/ankitks1515/folders/Camtasia%20Studio/media/565bc825-e1e0-4932-9e95-d881cfd0b497/embed" width="33%" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<!-- copy and paste. Modify height and width if desired. -->
<iframe class="embeddedObject shadow resizable" name="embedded_content" scrolling="no" frameborder="0" type="text/html"
style="overflow:hidden;" src="https://www.screencast.com/users/ankitks1515/folders/Camtasia%20Studio/media/565bc825-e1e0-4932-9e95-d881cfd0b497/embed" width="33%" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</section>
</main></div>
<div class="video_body"> <main>
<section>
<!-- copy and paste. Modify height and width if desired. -->
<iframe class="embeddedObject shadow resizable" name="embedded_content" scrolling="no" frameborder="0" type="text/html"
style="overflow:hidden;" src="https://www.screencast.com/users/ankitks1515/folders/Camtasia%20Studio/media/565bc825-e1e0-4932-9e95-d881cfd0b497/embed" width="33%" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<!-- copy and paste. Modify height and width if desired. -->
<!-- . Modify height and width if desired. --> -->
</section>
</main></div>
</div></div>
</div>
<script>
// let profile_icon =document.querySelector("#profile_icon");
let btn = document.querySelector("#btn");
let sidebar = document.querySelector(".sidebar");
// profile_icon.onclick = function(){
// alert("Profile");
// }
btn.onclick = function () {
sidebar.classList.toggle("active");
};
</script>
</body>
</html>