-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (60 loc) · 2.51 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>SimpleSchedule</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M76CKD39F0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M76CKD39F0');
</script>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="container">
<h1>SimpleSchedule</h1>
<select id="year" onchange="populateGroups()">
<option value="">Select an Year</option>
<option value="1">1st Year</option>
<option value="2">2nd Year</option>
</select>
<select id="group" onchange="populateSubgroups()">
<option value="">Select a Group</option>
</select>
<select id="subgroup">
<option value="">Select a subgroup</option>
</select>
<button onclick="downloadSchedule()">Download Schedule</button>
</div>
<div class="warning-message">
Schedules are only available for 2nd year at the moment. 1st year schedules will be added later.
</div>
<div class="personal-info">
<h2>About Me</h2>
<div class="profile-pic"></div>
<p><strong>Subhash Gottumukkala</strong></p>
<p>Thapar Institute of Engineering</p>
<p> and Technology</p>
<p>GitHub: <a href="https://github.com/subhashhhhhh" target="_blank">subhashhhhhh</a></p>
<p><a href="https://subhashh.netlify.app" target="_blank">Read My Blog</a></p>
</div>
<div class="cta-message">
<p>Please consider starring the <a href="https://github.com/subhashhhhhh/simple-schedule" target="_blank">repository</a> on GitHub to support the project!</p>
</div>
<!-- Cloudflare Web Analytics -->
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "9e31fbedc737429cbc0021c7121b2972"}'></script>
<!-- End Cloudflare Web Analytics -->
<script src="js/script.js"></script>
</body>
</html>