-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.html
73 lines (70 loc) · 2.7 KB
/
content.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Python Learning</title>
<link rel="stylesheet" href="content.css">
<link href="https://fonts.googleapis.com/css2?family=Silkscreen&family=Work+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<script src="https://unpkg.com/@phosphor-icons/web"></script>
</head>
<body>
<header class="header">
<div class="header_container">
<a href="index.html" class="logo">Koded</a>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="code-editor.html" target="_blank">Code-Online</a></li>
</ul>
</nav>
<button id="sidebar-toggle" class="sidebar-toggle">
<i class="ph ph-list"></i>
</button>
</div>
</header>
<div class="container">
<aside id="sidebar" class="sidebar">
<nav>
<ul id="sidebar-menu">
<!-- Sidebar items will be added dynamically -->
</ul>
</nav>
</aside>
<main class="content">
<div id="content-container">
<!-- Content will be added dynamically -->
</div>
</main>
</div>
<footer class="footer">
<div class="footer-container">
<div class="footer-links">
<a href="#help">Get Help</a>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact Us</a>
<a href="#team">Our Team</a>
</div>
<div class="footer-social">
<a href="https://www.facebook.com/parivartansocialfoundation/" target="_blank" class="social-icon">
<i class="ph ph-facebook-logo"></i>
</a>
<a href="https://www.parivartansf.org/" target="_blank" class="social-icon">
<i class="ph ph-link"></i>
</a>
<a href="https://www.instagram.com/parivartanng0/" target="_blank" class="social-icon">
<i class="ph ph-instagram-logo"></i>
</a>
<a href="https://www.youtube.com/channel/UCfgV7kzoPhhT55rjDFxHa2g" target="_blank" class="social-icon">
<i class="ph ph-youtube-logo"></i>
</a>
</div>
<div class="footer-links">
<a style="font-size: 12px;">© 2021 Koded. All rights reserved.</a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>