Spaces:
Sleeping
Sleeping
File size: 996 Bytes
18a92cd 4400e3c 5ab705f 18a92cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flashcard Sets</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="sets">
<h1>Flashcard Sets</h1>
<ul>
<li><a href="{{ url_for('index', set='A', index=0) }}">Set A - Plastics</a></li>
<li><a href="{{ url_for('index', set='B', index=0) }}">Set B - Renewable Energy</a></li>
<li><a href="{{ url_for('index', set='C', index=0) }}">Set C - Report Writing</a></li>
<li><a href="{{ url_for('index', set='D', index=0) }}">Set D - Climate Change</a></li>
<li><a href="{{ url_for('index', set='F', index=0) }}">Set F - Coding Best Practices</a></li>
<li><a href="{{ url_for('index', set='G', index=0) }}">Set G - Science and Technology Education</a></li>
</ul>
</div>
</body>
</html>
|