-
Notifications
You must be signed in to change notification settings - Fork 2
/
courses.html
41 lines (35 loc) · 1.28 KB
/
courses.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Select Your Courses</title>
<link rel="stylesheet" href="courses.css">
</head>
<body>
<!-- Section Wrapper For PrepZen -->
<div class="section-wrapper">
<h2 style="color: Yellow;">Select your course and branch to get started:</h2>
<div class="buttons">
<button onclick="redirectTo('btech.html')">Start Learning: BTech</button> <!--Redirecert to BTech Courses-->
<button onclick="redirectTo('bvoc.html')">Start Learning: BVoc</button> <!--Redirecert to BVoc Courses-->
</div>
<a class="buy-coffee" href="https://www.buymeacoffee.com/YourProfile" target="_blank">Buy Us a Coffee ☕</a>
</div>
<!-- footer Team PrepZen -->
<footer
style="
position: absolute;
bottom: 20px;
color: #b1a6a6;
font-size: 0.8rem;
">
Made with Love - <a href="contact.html" style="color: #ffdf00;"> Team PrepZen</a>
</footer>
<script>
function redirectTo(url) {
window.location.href = url;
}
</script>
</body>
</html>