add more pages + fix bugs

This commit is contained in:
2023-05-19 20:36:23 +02:00
parent 7a86ec0de2
commit 5f69d25662
10 changed files with 356 additions and 145 deletions

View File

@@ -0,0 +1,99 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet'>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/examplesStyle.css">
<link rel="stylesheet" href="/css/fancyStyle.css">
<meta http-equiv="X-UA-Compatible" content="IE=8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Order :: Development - janishutz.com</title>
</head>
<body>
<div id="nav"></div>
<div class="scroll-indicator" id="scroll-hint">
<div class="scroll-wrapper">
Scroll to discover more
<span class="material-symbols-outlined scroll-symbol">keyboard_double_arrow_down</span>
</div>
</div>
<div class="progress" id="progress">
<div class="progress-wrapper">
<span class="material-symbols-outlined progress-item" id="step1">radio_button_checked</span>
<span class="material-symbols-outlined progress-item" id="step2">radio_button_unchecked</span>
<span class="material-symbols-outlined progress-item" id="step3">radio_button_unchecked</span>
<span class="material-symbols-outlined progress-item" id="step4">radio_button_unchecked</span>
<span class="material-symbols-outlined progress-item" id="step5">radio_button_unchecked</span>
<span class="material-symbols-outlined progress-item" id="step6">radio_button_unchecked</span>
<span class="material-symbols-outlined progress-item" id="step7">radio_button_unchecked</span>
</div>
</div>
<div class="step" id="step-1">
<div class="step-content">
<h1 class="gradient-purple huge small-margin">Exam&shy;ples</h1>
<h3 class="gradient-purple bigger">of websites I have created</h3>
</div>
</div>
<div class="step reveal" id="step-2">
<div class="step-content">
<h1 class="gradient-purple biggest small-margin">Libre&shy;ǝvent</h1>
<p class="white half-width">My flagship project - A fully free and open source event management solution</p>
</div>
</div>
<div class="step reveal" id="step-3">
<div class="step-content">
<h1 class="gradient-purple biggest small-margin">Per&shy;sonal web&shy;site</h1>
<p class="white half-width">My own website, where I show off my projects</p>
</div>
</div>
<div class="step reveal" id="step-4">
<div class="step-content">
<h1 class="gradient-purple biggest small-margin">im&shy;press.js - website</h1>
<p class="white half-width">A website for a JavaScript presentation framework I contribute code to</p>
</div>
</div>
<div class="step reveal" id="step-5">
<div class="step-content">
<h1 class="gradient-purple biggest small-margin">im&shy;press.js - docs</h1>
<p class="white half-width">The documentation page for impress.js, a JavaScript presentation framework</p>
</div>
</div>
<div class="step reveal" id="step-6">
<div class="step-content">
<h1 class="gradient-purple biggest small-margin">Boo&shy;king</h1>
<p class="white half-width">A fully featured booking system for Language School Hossegor</p>
</div>
</div>
<div class="step reveal" id="step-7">
<div class="step-content">
<h1 class="gradient-purple biggest small-margin">Ja&shy;pan</h1>
<p class="white half-width">A small research project for history class at school</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script defer src="/js/scrolling.js"></script>
<script>
$( '#nav' ).load( '/nav.html' );
</script>
</body>
</html>