Files
web/index.html
2022-01-06 22:27:18 -08:00

135 lines
5.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<title>Timothy Pidashev</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" />
<meta content="Timothy Pidashev" property="og:title" />
<meta content="A 17-year-old on an epic journey to become a software developer!" property="og:description" />
<meta content="https://timmypidashev.com/" property="og:url" />
<meta content="https://timmypidashev.com/images/elements/png/timmy.png" property="og:image" />
<meta content="#333333" data-react-helmet="true" name="theme-color" />
<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()">&times;</a>
<div class="overlay-content">
<a href="code.html">Write some code</a>
</div>
</div>
<!-- Navbar -->
<div class="header">
<span style="font-size:30px;cursor:pointer" onclick="openNav()">&#9776; </span>
<div class="header-right">
<a class="active" href="index.html">About</a>
<a 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="fade-right">Hello, Im</h1>
<h1 class="hero__header" data-aos="flip-down">Timothy</h1>
<h1 class="hero__header" data-aos="fade-left">Pidashev</h1>
</div>
<img src="images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
</section>
<!-- Section -->
<section class="centered">
<div>
<h1 class="about__header" data-aos="zoom-out">
I'm a 17-year-old on an
<span class="highlight">epic journey</span>
</h1>
<h1 class="about__header" data-aos="flip-down">
to become a
<span class="highlight">software developer!</span>
</h1>
</div>
<img src="images/elements/png/line_short.png" alt="line" class="divider__line" data-aos="flip-left">
</section>
<!-- End of Page -->
<div id="end__of__page" class="centered">
<!-- First Row -->
<div class="row">
<!-- Youtube -->
<div class="logo">
<a href="#" target="_blank">
<img src="images/elements/png/youtube.png" alt="youtube logo" data-aos="fade-left" class="logo__image">
</a>
</div>
<!-- Twitter -->
<div class="logo">
<a href="#" target="_blank">
<img src="images/elements/png/twitter.png" alt="twitter logo" data-aos="zoom-in" class="logo__image">
</a>
</div>
<!-- Discord -->
<div class="logo">
<a href="https://discord.gg/34RqygKbtX" target="_blank">
<img src="images/elements/png/discord.png" alt="discord logo" data-aos="fade-right" class="logo__image">
</a>
</div>
</div>
<!-- Second Row -->
<div class="row">
<!-- Itch -->
<div class="logo">
<a href="#" target="_blank">
<img src="images/elements/png/itch.png" alt="itch logo" data-aos="fade-right" class="logo__image">
</a>
</div>
<!-- Github -->
<div class="logo">
<a href="https://github.com/timmypidashev" target="_blank">
<img src="images/elements/png/github.png" alt="github logo" data-aos="zoom-out" class="logo__image">
</a>
</div>
<!-- Gmail -->
<div class="logo">
<a href="mailto: pidashev.tim@gmail.com" target="_blank">
<img src="images/elements/png/gmail.png" alt="gmail logo" data-aos="fade-left" class="logo__image">
</a>
</div>
</div>
</div>
<!-- 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>