Files
web/assignments.html
2022-01-08 16:32:53 -08:00

32 lines
1010 B
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">Assignments</h1>
<div class="assignment">
<button data-aos="zoom-in">Test</button>
</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>