mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 02:53:51 +00:00
30 lines
923 B
HTML
30 lines
923 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">This lesson is not unlocked yet!</h1>
|
|
</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>
|
|
|