- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython.php
More file actions
Latest commit
114 lines (104 loc) · 5.52 KB
/
Copy pathpython.php
File metadata and controls
114 lines (104 loc) · 5.52 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
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metahttp-equiv="X-UA-Compatible"content="IE=edge">
<metaname="viewport"content="width=device-width, initial-scale=1.0">
<title>python</title>
<linkrel="shortcut icon"href="favicon.ico"type="image/x-icon">
<linkhref="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css"rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"crossorigin="anonymous">
<linkrel="stylesheet"href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<linkrel="preconnect"href="https://fonts.googleapis.com">
<linkrel="preconnect"href="https://fonts.gstatic.com"crossorigin>
<linkrel="stylesheet"href="css/web_heading.css">
<linkrel="stylesheet"href="css/Style.css">
<scripttype="javascript"src="css/script.js"></script>
<scriptsrc="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
<scripttype="css/javascript"src="script.js"></script>
</head>
<body>
<header>
<ahref="#"class="logo">Query</a>
<nav>
<divclass="nav-bar">
<ahref="user_page.php">home</a>
<ahref="user_page.php">about</a>
<!-- subjaects option -->
<aclass=" dropdown-toggle"href="#"role="button"data-bs-toggle="dropdown"
aria-expanded="false">subjects</a>
<ulclass="dropdown-menu">
<li><aclass="dropdown-item"href="Statistics.php">Statistics</a></li>
<li><aclass="dropdown-item"href="lineralgebra.php">linear Algebra</a></li>
<li><aclass="dropdown-item"href="R_programming.php">R Programming</a></li>
<li><aclass="dropdown-item"href="machine_learning.php">Machine Learning</a></li>
<li><aclass="dropdown-item"href="Data_mining.php">Data Mining</a></li>
<li><aclass="dropdown-item"href="Data_Visualisation.php">Data Visualization</a></li>
<li><aclass="dropdown-item"href="python.php">Python</a></li>
<li><aclass="dropdown-item"href="DataStucture.php">DSA</a></li>
</ul>
<!-- quizzes option -->
<ahref="quizes.php"target="_blank"role="button"aria-expanded="false">quizes</a>
<!-- notes option -->
<ahref="notes.php"target="_blank"role="button"aria-expanded="false">Notes</a>
<ahref="logout.php">logout</a>
<divclass="animation start-home"></div>
</div>
</nav>
</header><br><br><br><br><br>
<divclass="lecturs"style="padding: 30px;">
<iframewidth="560"height="315"src="https://www.youtube.com/embed/gfDE2a7MKjA"title="YouTube video player"frameborder="0"allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"allowfullscreen></iframe>
<h4> Python Tutorial For Beginners In Hindi (With Notes)</h4>
<iframewidth="560"height="315"src="https://www.youtube.com/embed/61a7UkDO50s"title="YouTube video player"frameborder="0"allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"allowfullscreen></iframe>
<h4>Python Programming Course in Hindi (Advanced) </h4>
<iframewidth="560"height="315"src="https://www.youtube.com/embed/E8fmDDtaHLU"title="YouTube video player"frameborder="0"allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"allowfullscreen></iframe>
<h4>Python Project: Tic Tac Toe Game in Python </h4>
</div>
<sectionid="contact">
<divclass="footer">
<divclass="main">
<divclass="col">
<h4>links</h4>
<ul>
<li><ahref="user_page.php">contest</a></li>
</ul>
</div>
<divclass="col">
<h4>Our services</h4>
<ul>
<!-- <li><a href="#">webdesign</a></li> -->
<li><ahref="user_page.php">services</a></li>
</ul>
</div>
<divclass="col">
<h4>info</h4>
<ul>
<li><ahref="about.php">OUR TEAM</a></li>
</ul>
</div>
<divclass="col">
<h4>Social media Handles</h4>
<divclass="social">
<ahref="#"><iclass='bx bxl-facebook'></i></a>
<ahref="#"><iclass='bx bxl-twitter'></i></a>
<ahref="#"><iclass='bx bxl-instagram'></i></a>
<ahref="#"><iclass='bx bxl-youtube'></i></a>
</div>
</div>
</div>
</div>
</section>
<script>
let menu = document.querySelector("#menu-icon");
let navbar = document.querySelector(".navbar");
menu.addEventListener("click", function () {
navbar.classList.toggle("active");
});
window.onscroll = () => {
navbar.classList.remove("active");
};
</script>
</body>
</html>