mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 11:03:50 +00:00
88 lines
4.0 KiB
HTML
88 lines
4.0 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.html">
|
|
<button data-aos="zoom-in" id="1.1">Warmup</button>
|
|
</a>
|
|
<a href="https://timmypidashev.com/python/assignments/1.2.html">
|
|
<button data-aos="zoom-in" id="1.2">Classwork</button>
|
|
</a>
|
|
<a href="https://timmypidashev.com/python/assignments/1.3.html">
|
|
<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.html">
|
|
<button data-aos="zoom-in" id="2.1">Warmup</button>
|
|
</a>
|
|
<a href="https://timmypidashev.com/python/assignments/2.2.html">
|
|
<button data-aos="zoom-in" id="2.2">Classwork</button>
|
|
</a>
|
|
<a href="https://timmypidashev.com/python/assignments/2.3.html">
|
|
<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.html">
|
|
<button data-aos="zoom-in" id="3.1">Warmup</button>
|
|
</a>
|
|
<a href="https://timmypidashev.com/python/assignments/3.2.html">
|
|
<button data-aos="zoom-in" id="3.2">Classwork</button>
|
|
</a>
|
|
<a href="https://timmypidashev.com/python/assignments/3.3.html">
|
|
<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.html">
|
|
<button data-aos="zoom-in" id="4.1">Warmup</button>
|
|
</a>
|
|
<a href="https://timmypidashev.com/python/assignments/4.2.html">
|
|
<button data-aos="zoom-in" id="4.2">Classwork</button>
|
|
</a>
|
|
<a href="https://timmypidashev.com/python/assignments/4.3.html">
|
|
<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.html">
|
|
<button data-aos="zoom-in" id="5.1">Warmup</button>
|
|
</a>
|
|
<a href="https://timmypidashev.com/python/assignments/5.2.html">
|
|
<button data-aos="zoom-in" id="5.2">Classwork</button>
|
|
</a>
|
|
<a href="https://timmypidashev.com/python/assignments/5.3.html">
|
|
<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> |