apostrophe/index.html

79 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/sass/styles.css">
<link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
<title>UberWriter</title>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="assets/js/jquery.scrollify.js"></script>
<script>
$(function() {
$.scrollify({
section : ".section",
interstitialSection : ".footer",
setHeights: false,
});
});
</script>
</head>
<body class="background-2">
<header>
<img class="logo" src="images/uberwriter_logo.svg" alt="logo">
<h1>berWriter</h1>
<div class="buttons">
<a href="https://www.paypal.me/WolfVollprecht">
<button class="donate">Donate</button>
</a>
<a id="download" href="https://flathub.org/apps/details/de.wolfvollprecht.UberWriter">
<button class="download">Download!</button>
</a>
</div>
</header>
<main>
<section class="section" id="MainApp">
<img src="images/main_web.svg#MainApp" alt="">
</section>
<section class="section" id="DarkMode">
<img src="images/main_web.svg#MainAppDark" alt="">
</section>
<section class="section" id="InlinePreview">
<img src="images/main_web.svg#InlinePreview" alt="">
</section>
<section class="section" id="InlinePreview-2">
<img src="images/main_web.svg#InlinePrevi2w" alt="">
</section>
<section class="section" id="InlinePreview-3">
<img src="images/main_web.svg#InlinePrevi3w" alt="">
</section>
<section class="section programmers">
<div class="programmer left">
<img src="images/Wolf.jpeg" alt="Wolf Vollprecht">
<p>Blablabla</p>
</div>
<div class="programmer right">
<img src="images/Manu.jpeg" alt="Manuel Genovés">
<p>Blebleble</p>
</div>
</section>
</main>
<footer id="footer">
<div id="about">
<p>UberWriter©, a GPL program</p>
</div>
<div id="links">
<a href="https://github.com/UberWriter">Github</a>
<a href="https://poeditor.com/join/project/gxVzFyXb2x">Localization</a>
<a href="https://flathub.org/apps/details/de.wolfvollprecht.UberWriter">Flathub</a>
<a href="https://www.paypal.me/WolfVollprecht">Donate</a>
</div>
</footer>
</body>
</html>