Files
web/assignments.html
Timothy Pidashev 60b9e62881 more work
2022-01-08 18:21:20 -08:00

88 lines
3.9 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<title>Assignments</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet/less" type="text/css" href="css/assignments.less" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<h1 class="hero__header" data-aos="zoom-out">Lesson 1</h1>
<div class="assignment">
<a href="https://timmypidashev.com/python/assignments/1.1">
<button data-aos="zoom-in" id="1.1">Warmup</button>
</a>
<a href="https://timmypidashev.com/python/assignments/1.2">
<button data-aos="zoom-in" id="1.2">Classwork</button>
</a>
<a href="https://timmypidashev.com/python/assignments/1.3">
<button data-aos="zoom-in" id="1.3">Assignment</button>
</a>
</div>
<h1 class="hero__header" data-aos="zoom-out">Lesson 2</h1>
<div class="assignment">
<a href="https://timmypidashev.com/python/assignments/2.1">
<button data-aos="zoom-in" id="2.1">Warmup</button>
</a>
<a href="https://timmypidashev.com/python/assignments/2.2">
<button data-aos="zoom-in" id="2.2">Classwork</button>
</a>
<a href="https://timmypidashev.com/python/assignments/2.3">
<button data-aos="zoom-in" id="2.3">Assignment</button>
</a>
</div>
<h1 class="hero__header" data-aos="zoom-out">Lesson 3</h1>
<div class="assignment">
<a href="https://timmypidashev.com/python/assignments/3.1">
<button data-aos="zoom-in" id="3.1">Warmup</button>
</a>
<a href="https://timmypidashev.com/python/assignments/3.2">
<button data-aos="zoom-in" id="3.2">Classwork</button>
</a>
<a href="https://timmypidashev.com/python/assignments/3.3">
<button data-aos="zoom-in" id="3.3">Assignment</button>
</a>
</div>
<h1 class="hero__header" data-aos="zoom-out">Lesson 4</h1>
<div class="assignment">
<a href="https://timmypidashev.com/python/assignments/4.1">
<button data-aos="zoom-in" id="4.1">Warmup</button>
</a>
<a href="https://timmypidashev.com/python/assignments/4.2">
<button data-aos="zoom-in" id="4.2">Classwork</button>
</a>
<a href="https://timmypidashev.com/python/assignments/4.3">
<button data-aos="zoom-in" id="4.3">Assignment</button>
</a>
</div>
<h1 class="hero__header" data-aos="zoom-out">Lesson 5</h1>
<div class="assignment">
<a href="https://timmypidashev.com/python/assignments/5.1">
<button data-aos="zoom-in" id="5.1">Warmup</button>
</a>
<a href="https://timmypidashev.com/python/assignments/5.2">
<button data-aos="zoom-in" id="5.2">Classwork</button>
</a>
<a href="https://timmypidashev.com/python/assignments/5.3">
<button data-aos="zoom-in" id="5.3">Assignment</button>
</a>
</div>
</div>
</div>
<script src="js/less.js" data-env="production"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>AOS.init(
{
once: false,
mirror: true,
anchorPlacement: 'top-bottom',
offset: 0,
duration: 800
});
</script>
</body>
</html>