-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpythonmenu.html
49 lines (47 loc) · 2.04 KB
/
pythonmenu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="menu.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<title>Python - Code Wiz</title>
</head>
<body>
<header>
<div class="navbar">
<h1 class="logo">Code Wiz - Python</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<div class="hero">
<h2>Welcome to the Python Course</h2>
<p>Select a module to begin your learning journey.</p>
</div>
<div class="course-modules">
<div class="module-container">
<a href="pythonmodule1.html" class="module-button">Module 1: Basics of Python</a>
<a href="pythonmodule2.html" class="module-button">Module 2: Data Structures</a>
<a href="pythonmodule3.html" class="module-button">Module 3: Advanced Python</a>
<a href="pythontest.html" class="module-button">Test Your Knowledge</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfMSqhu_O3lyOZZCz1e6bB648jXDKCPp0L6At53vsBZsfYRkg/viewform?usp=sf_link" class="module-button">Get Certificate Test</a> <!-- New Option -->
</div>
</div>
<footer>
<p>© 2024 Code Wiz. All rights reserved.</p>
<div class="socials">
<a href="https://facebook.com" target="_blank">Facebook</a>
<a href="https://twitter.com" target="_blank">Twitter</a>
<a href="https://instagram.com" target="_blank">Instagram</a>
</div>
</footer>
</body>
</html>