-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlast_year_questions.html
134 lines (118 loc) · 5.31 KB
/
last_year_questions.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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resource Version Control</title>
<link rel="stylesheet" href="stylelastyr.css">
<link rel="shortcut icon" href="emoji.png" type="image/x-icon">
</head>
<body class="dark-theme">
<header>
<h1>
<a href="HOME.html" id="home-link">Resource Version Control</a>
</h1>
<nav>
<ul>
<li>
<a href="contacts/contact.html">
<img src="icons/world-wide-web (1).png" alt="Contact" class="contact-icon" id="contact-icon">
</a>
</li>
</ul>
</nav>
</header>
<main>
<section id="readme">
<h2>README</h2>
<p> Here, you can easily access coursework resources for each semester in Excel format. To begin, select your year from the dropdown menu.
Once you've made your selection, you'll be able to view and download the resources available for that year and semester.
Each card represents a specific semester and includes the latest updates and materials available for download.
You can either click on the "Open Sheet" button to access the most recent versions of the resources or use the swipe gesture to download the PDF format of the sheet.
If you have any questions or run into any issues, please don’t hesitate to reach out via the contact link provided on the website.</p>
</section>
<section id="resource-list">
<h2>Available Resources</h2>
<div class="dropdown-container">
<select id="year-select" class="dropdown-select">
<option value="Select Year" disabled selected>Select your Year</option>
<option value="year1">Year 1</option>
<option value="year2">Year 2</option>
<option value="year3">Year 3</option>
</select>
</div>
<!-- No Year Selected Message -->
<p id="no-year-selected" class="no-year-message">Select your year to view the data resources.</p>
<div id="year1" class="year-content" style="display:none;">
<div class="card-container">
<div class="card">
<div class="card-header">
<h3>Year 1 Sem-1 BSCHCS</h3>
</div>
<div class="card-body">
<a href="https://docs.google.com/spreadsheets/d/1j10ulHteStdUGimq3GmW9aZn6i8cqtUZvBg1wf3G7yE/edit?usp=sharing" class="button" download>Open - Sheet</a>
<div class="swipe-container">
<div class="swipe-button" data-url="https://drive.google.com/uc?export=download&id=1VW0toisgL61dfSoWv0FsWaes6H-BBkbs">
<span class="swipe-text">Swipe to Download</span>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h3>Year 1 Sem-2 BSCHCS</h3>
</div>
<div class="card-body">
<a href="https://docs.google.com/spreadsheets/d/1aLZbU11toQHZoNIZCEA8RhFtwDkHUWFt6pd1grnDdUM/edit?usp=sharing" class="button" download>Open - Sheet</a>
<div class="swipe-container">
<div class="swipe-button" data-url="https://drive.google.com/uc?export=download&id=1gm9RkUCBIq8LjQumD6s8Miv4ROUkn6lk">
<span class="swipe-text">Swipe to Download</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="year2" class="year-content" style="display:none;">
<div class="card-container">
<div class="card">
<div class="card-header">
<h3>Year 2 Sem-3 BSCHCS</h3>
</div>
<div class="card-body">
<a href="https://docs.google.com/spreadsheets/d/1TsNiaQ-Jqu5kqnvItDyKsYte_H7605cg/edit?usp=sharing&ouid=116669691422581959167&rtpof=true&sd=true" class="button" download>Open - Sheet</a>
<div class="swipe-container">
<div class="swipe-button" data-url="https://drive.google.com/uc?export=download&id=1SOP_pMF7ixSME_-wBvVFIqMB4Y14mgGx">
<span class="swipe-text">Swipe to Download</span>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<h3>Year 2 Sem-4 BSCHCS</h3>
</div>
<div class="card-body">
<a href="https://docs.google.com/spreadsheets/d/1Pz8_pFY6uoCXD9RPlWsHp0EtL1UYZDbS/edit?usp=drive_link" class="button" download>Open - Sheet</a>
<div class="swipe-container">
<div class="swipe-button" data-url="https://drive.google.com/uc?export=download&id=1OfDJeGjKt2c-Aw2EAtetqzV2kVbzoyRH">
<span class="swipe-text">Swipe to Download</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="year3" class="year-content" style="display:none;">
<!-- year 3 data -->
</div>
</section>
</main>
<footer>
<a href="HOME.html"><p>© 2024 Resource Version Control</p></a>
<p class="contact-footer"><a href="contacts/contact.html">Contact</a></p>
</footer>
<!-- Add JavaScript file or inline script -->
<script src="scriptlastyr.js"></script>
</body>
</html>