mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 19:13:51 +00:00
57 lines
2.1 KiB
HTML
57 lines
2.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Blog</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="Timothy Pidashev" content="A 17-year-old on an epic journey to become a software developer!" />
|
|
<meta name="keywords" content="Timothy Pidashev, timmypidashev, timmy, programming, github" />
|
|
<link rel="shortcut icon" type="image/png" href="images/elements/png/timmy.png"/>
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
|
|
</head>
|
|
<body>
|
|
<!-- Overlay -->
|
|
<div id="myNav" class="overlay">
|
|
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
|
<div class="overlay-content">
|
|
<a href="download.html">Download YT</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Navbar -->
|
|
<div class="header">
|
|
<span style="font-size:30px;cursor:pointer" onclick="openNav()">☰ </span>
|
|
<div class="header-right">
|
|
<a href="index.html">About</a>
|
|
<a class="active" href="blog.html">Blog</a>
|
|
<a href="projects.html">Projects</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Content -->
|
|
<!-- Section -->
|
|
<section class="centered">
|
|
<div>
|
|
<h1 class="hero__header" data-aos="flip-down">Work In Progress</h1>
|
|
</div>
|
|
<img src="images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
|
|
</section>
|
|
|
|
<!-- JS -->
|
|
<script src="js/closeNav.js"></script>
|
|
<script src="js/openNav.js"></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> |