use root relative paths

This commit is contained in:
Arthur Lu 2024-12-09 01:11:06 +00:00
parent e8c3a40444
commit bbc2aed795
10 changed files with 125 additions and 94 deletions

View File

@ -5,18 +5,18 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects - Arthur Lu</title> <title>Projects - Arthur Lu</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css" type="text/css"> <link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="css/overlay.css" type="text/css"> <link rel="stylesheet" href="/css/overlay.css" type="text/css">
<link rel="icon" type="image/x-icon" href="resources/icon/favicon.svg"> <link rel="icon" type="image/x-icon" href="/resources/icon/favicon.svg">
</head> </head>
<body> <body>
<header> <header>
<h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1> <h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1>
<nav> <nav>
<a aria-label="Projects" href="index.html">PROJECTS</a> <a aria-label="Projects" href="/index.html">PROJECTS</a>
<a aria-label="Photography" href="photography.html">PHOTOGRAPHY</a> <a aria-label="Photography" href="/photography.html">PHOTOGRAPHY</a>
<a aria-current="page" aria-label="About Me" href="about.html">ABOUT ME</a> <a aria-current="page" aria-label="About Me" href="/about.html">ABOUT ME</a>
<a aria-label="Notes" href="notes.html">CLASS NOTES</a> <a aria-label="Notes" href="/notes.html">CLASS NOTES</a>
</nav> </nav>
</header> </header>
<main> <main>

View File

@ -5,9 +5,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects - Arthur Lu</title> <title>Projects - Arthur Lu</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css" type="text/css"> <link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="css/overlay.css" type="text/css"> <link rel="stylesheet" href="/css/overlay.css" type="text/css">
<link rel="icon" type="image/x-icon" href="resources/icon/favicon.svg"> <link rel="icon" type="image/x-icon" href="/resources/icon/favicon.svg">
<style> <style>
.project { .project {
max-width: 1080px; max-width: 1080px;
@ -18,26 +18,26 @@
</head> </head>
<body> <body>
<header> <header>
<h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1> <h1><b><a aria-label="Arthur Lu" href="/" class="site-header">ARTHUR LU</a></b></h1>
<nav> <nav>
<a aria-current="page" aria-label="Projects" href="index.html">PROJECTS</a> <a aria-current="page" aria-label="Projects" href="/index.html">PROJECTS</a>
<a aria-label="Photography" href="photography.html">PHOTOGRAPHY</a> <a aria-label="Photography" href="/photography.html">PHOTOGRAPHY</a>
<a aria-label="About Me" href="about.html">ABOUT ME</a> <a aria-label="About Me" href="/about.html">ABOUT ME</a>
<a aria-label="Notes" href="notes.html">CLASS NOTES</a> <a aria-label="Notes" href="/notes.html">CLASS NOTES</a>
</nav> </nav>
</header> </header>
<main> <main>
<figure class="overlay-container project"> <figure class="overlay-container project">
<img src="resources/projects/proxmoxaas.jpg" alt="" class="image"> <img src="/resources/projects/proxmoxaas.jpg" alt="" class="image">
<figcaption class="overlay-mask"> <figcaption class="overlay-mask">
<a href="" class="overlay-content"> <a href="/projects/proxmoxaas.html" class="overlay-content">
<h2>ProxmoxAAS</h2> <h2>ProxmoxAAS</h2>
<p>User self-managed VPS platform based on Proxmox hypervisor.</p> <p>User self-managed VPS platform based on Proxmox hypervisor.</p>
</a> </a>
</figcaption> </figcaption>
</figure> </figure>
<figure class="overlay-container project"> <figure class="overlay-container project">
<img src="resources/projects/pico_bmc.jpg" alt="" class="image"> <img src="/resources/projects/pico_bmc.jpg" alt="" class="image">
<figcaption class="overlay-mask"> <figcaption class="overlay-mask">
<a href="" class="overlay-content"> <a href="" class="overlay-content">
<h2>Pico BMC</h2> <h2>Pico BMC</h2>
@ -46,7 +46,7 @@
</figcaption> </figcaption>
</figure> </figure>
<figure class="overlay-container project"> <figure class="overlay-container project">
<img src="resources/projects/wfajs.jpg" alt="" class="image"> <img src="/resources/projects/wfajs.jpg" alt="" class="image">
<figcaption class="overlay-mask"> <figcaption class="overlay-mask">
<a href="" class="overlay-content"> <a href="" class="overlay-content">
<h2>WFA-JS</h2> <h2>WFA-JS</h2>

View File

@ -5,66 +5,65 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Class Notes - Arthur Lu</title> <title>Class Notes - Arthur Lu</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css" type="text/css"> <link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="css/overlay.css" type="text/css"> <link rel="stylesheet" href="/css/overlay.css" type="text/css">
<link rel="icon" type="image/x-icon" href="resources/icon/favicon.svg"> <link rel="icon" type="image/x-icon" href="/resources/icon/favicon.svg">
</head> </head>
<body> <body>
<header> <header>
<h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1> <h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1>
<nav> <nav>
<a aria-label="Projects" href="index.html">PROJECTS</a> <a aria-label="Projects" href="/index.html">PROJECTS</a>
<a aria-label="Photography" href="photography.html">PHOTOGRAPHY</a> <a aria-label="Photography" href="/photography.html">PHOTOGRAPHY</a>
<a aria-label="About Me" href="about.html">ABOUT ME</a> <a aria-label="About Me" href="/about.html">ABOUT ME</a>
<a aria-current="page" aria-label="Notes" href="notes.html">CLASS NOTES</a> <a aria-current="page" aria-label="Notes" href="/notes.html">CLASS NOTES</a>
</nav> </nav>
</header> </header>
<main> <main>
<h1>Class Notes</h1>
<section> <section>
<h2>CSE</h2> <h2>CSE</h2>
<ul> <ul>
<li><a href = "resources/notes/CSE-20.pdf" download>CSE 20 - Discrete Mathematics</a></li> <li><a href = "/resources/notes/CSE-20.pdf" download>CSE 20 - Discrete Mathematics</a></li>
<li><a href = "resources/notes/CSE-21.pdf" download>CSE 21 - Mathematics for Algorithms and Systems</a></li> <li><a href = "/resources/notes/CSE-21.pdf" download>CSE 21 - Mathematics for Algorithms and Systems</a></li>
<li><a href = "resources/notes/CSE-100.pdf" download>CSE 100 - Advanced Data Structures & C++</a></li> <li><a href = "/resources/notes/CSE-100.pdf" download>CSE 100 - Advanced Data Structures & C++</a></li>
<li><a href = "resources/notes/CSE-101.pdf" download>CSE 101 - Design and Analysis of Algorithms</a></li> <li><a href = "resources/notes/CSE-101.pdf" download>CSE 101 - Design and Analysis of Algorithms</a></li>
<li><a href = "resources/notes/CSE-110.pdf" download>CSE 110 - Software Engineering</a></li> <li><a href = "/resources/notes/CSE-110.pdf" download>CSE 110 - Software Engineering</a></li>
<li><a href = "resources/notes/CSE-120.pdf" download>CSE 120 - Principles of Computer Operating Systems</a></li> <li><a href = "/resources/notes/CSE-120.pdf" download>CSE 120 - Principles of Computer Operating Systems</a></li>
<li><a href = "resources/notes/CSE-127.pdf" download>CSE 127 - Intro to Computer Security</a></li> <li><a href = "/resources/notes/CSE-127.pdf" download>CSE 127 - Intro to Computer Security</a></li>
<li><a href = "resources/notes/CSE-134B.pdf" download>CSE 134B - Web Client Languages</a></li> <li><a href = "/resources/notes/CSE-134B.pdf" download>CSE 134B - Web Client Languages</a></li>
<li><a href = "resources/notes/CSE-140.pdf" download> CSE 140 - Components and Design Techniques for Digital Systems </a></li> <li><a href = "/resources/notes/CSE-140.pdf" download> CSE 140 - Components and Design Techniques for Digital Systems </a></li>
<li><a href = "resources/notes/CSE-141.pdf" download> CSE 141 - Introduction to Computer Architecture </a></li> <li><a href = "/resources/notes/CSE-141.pdf" download> CSE 141 - Introduction to Computer Architecture </a></li>
<li><a href = "resources/notes/CSE-151A.pdf" download> CSE 151A - Intro to Machine Learning </a></li> <li><a href = "/resources/notes/CSE-151A.pdf" download> CSE 151A - Intro to Machine Learning </a></li>
<li><a href = "resources/notes/CSE-151B.pdf" download> CSE 151B - Deep Learning </a></li> <li><a href = "/resources/notes/CSE-151B.pdf" download> CSE 151B - Deep Learning </a></li>
<li><a href = "resources/notes/CSE-152A.pdf" download> CSE 152A - Introduction to Computer Vision </a></li> <li><a href = "/resources/notes/CSE-152A.pdf" download> CSE 152A - Introduction to Computer Vision </a></li>
<li><a href = "resources/notes/CSE-158.pdf" download> CSE 158 - Recommender Systems </a></li> <li><a href = "/resources/notes/CSE-158.pdf" download> CSE 158 - Recommender Systems </a></li>
<li><a href = "resources/notes/CSE-167.pdf" download>CSE 167 - Computer Graphics</a></li> <li><a href = "/resources/notes/CSE-167.pdf" download>CSE 167 - Computer Graphics</a></li>
</ul> </ul>
</section> </section>
<section> <section>
<h2>ECE</h2> <h2>ECE</h2>
<ul> <ul>
<li><a href = "resources/notes/ECE-35.pdf" download>ECE 35 - Introduction to Analog Design</a></li> <li><a href = "/resources/notes/ECE-35.pdf" download>ECE 35 - Introduction to Analog Design</a></li>
<li><a href = "resources/notes/ECE-45.pdf" download>ECE 45 - Circuits & Systems</a></li> <li><a href = "/resources/notes/ECE-45.pdf" download>ECE 45 - Circuits & Systems</a></li>
<li><a href = "resources/notes/ECE-65.pdf" download>ECE 65 - Components & Circuits Laboratory</a></li> <li><a href = "/resources/notes/ECE-65.pdf" download>ECE 65 - Components & Circuits Laboratory</a></li>
<li><a href = "resources/notes/ECE-101.pdf" download>ECE 101 - Linear Systems Fundamentals</a></li> <li><a href = "/resources/notes/ECE-101.pdf" download>ECE 101 - Linear Systems Fundamentals</a></li>
<li><a href = "resources/notes/ECE-109.pdf" download>ECE 109 - Engineering Probability and Statistics</a></li> <li><a href = "/resources/notes/ECE-109.pdf" download>ECE 109 - Engineering Probability and Statistics</a></li>
<li><a href = "resources/notes/ECE-111.pdf" download>ECE 111 - Advanced Digital Design Project</a></li> <li><a href = "/resources/notes/ECE-111.pdf" download>ECE 111 - Advanced Digital Design Project</a></li>
</ul> </ul>
</section> </section>
<section> <section>
<h2>MATH</h2> <h2>MATH</h2>
<ul> <ul>
<li><a href = "resources/notes/MATH-18.pdf" download>MATH 18 - Linear Algebra</a></li> <li><a href = "/resources/notes/MATH-18.pdf" download>MATH 18 - Linear Algebra</a></li>
<li><a href = "resources/notes/MatLab.pdf" download>MatLab for Math 18</a></li> <li><a href = "/resources/notes/MatLab.pdf" download>MatLab for Math 18</a></li>
<li><a href = "resources/notes/MATH-20C.pdf" download>MATH 20C - Calculus and Analytic Geometry</a></li> <li><a href = "/resources/notes/MATH-20C.pdf" download>MATH 20C - Calculus and Analytic Geometry</a></li>
<li><a href = "resources/notes/MATH-20D.pdf" download>MATH 20D - Introduction to Differential Equations</a></li> <li><a href = "/resources/notes/MATH-20D.pdf" download>MATH 20D - Introduction to Differential Equations</a></li>
</ul> </ul>
</section> </section>
<section> <section>
<h2>PHYS</h2> <h2>PHYS</h2>
<ul> <ul>
<li><a href = "resources/notes/PHYS 2C.pdf" download>PHYS 2C - Fluids, Waves, Thermodynamics, and Optics</a></li> <li><a href = "/resources/notes/PHYS 2C.pdf" download>PHYS 2C - Fluids, Waves, Thermodynamics, and Optics</a></li>
</ul> </ul>
</section> </section>
</main> </main>

View File

@ -5,9 +5,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photography - Arthur Lu</title> <title>Photography - Arthur Lu</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css" type="text/css"> <link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="css/overlay.css" type="text/css"> <link rel="stylesheet" href="/css/overlay.css" type="text/css">
<link rel="icon" type="image/x-icon" href="resources/icon/favicon.svg"> <link rel="icon" type="image/x-icon" href="/resources/icon/favicon.svg">
<style> <style>
#galleries-container { #galleries-container {
display: grid; display: grid;
@ -30,27 +30,27 @@
<header> <header>
<h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1> <h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1>
<nav> <nav>
<a aria-label="Projects" href="index.html">PROJECTS</a> <a aria-label="Projects" href="/index.html">PROJECTS</a>
<a aria-current="page" aria-label="Photography" href="photography.html">PHOTOGRAPHY</a> <a aria-current="page" aria-label="Photography" href="/photography.html">PHOTOGRAPHY</a>
<a aria-label="About Me" href="about.html">ABOUT ME</a> <a aria-label="About Me" href="/about.html">ABOUT ME</a>
<a aria-label="Notes" href="notes.html">CLASS NOTES</a> <a aria-label="Notes" href="/notes.html">CLASS NOTES</a>
</nav> </nav>
</header> </header>
<main> <main>
<div id="galleries-container"> <div id="galleries-container">
<figure class="overlay-container gallery"> <figure class="overlay-container gallery">
<img src="resources/photography/nature/1.jpg" alt="" class="image"> <img src="/resources/photography/nature/1.jpg" alt="" class="image">
<figcaption class="overlay-mask"> <figcaption class="overlay-mask">
<a href="photography/nature.html" class="overlay-content"> <a href="/photography/nature.html" class="overlay-content">
<h2>Nature</h2> <h2>Nature</h2>
<p>Classical nature photography.</p> <p>Classical nature photography.</p>
</a> </a>
</figcaption> </figcaption>
</figure> </figure>
<figure class="overlay-container gallery"> <figure class="overlay-container gallery">
<img src="resources/photography/nature2/1.jpg" alt="" class="image"> <img src="/resources/photography/nature2/1.jpg" alt="" class="image">
<figcaption class="overlay-mask"> <figcaption class="overlay-mask">
<a href="photography/nature2.html" class="overlay-content"> <a href="/photography/nature2.html" class="overlay-content">
<h2>Nature 2</h2> <h2>Nature 2</h2>
<p>If nature is so good, why isn't there nature 2?</p> <p>If nature is so good, why isn't there nature 2?</p>
</a> </a>

View File

@ -1 +0,0 @@
../css/

View File

@ -5,10 +5,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photography - Arthur Lu</title> <title>Photography - Arthur Lu</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css" type="text/css"> <link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="css/overlay.css" type="text/css"> <link rel="stylesheet" href="/css/overlay.css" type="text/css">
<link rel="icon" type="image/x-icon" href="resources/icon/favicon.svg"> <link rel="icon" type="image/x-icon" href="/resources/icon/favicon.svg">
<script src="scripts/ModalImage.js" type="module"></script> <script src="/scripts/ModalImage.js" type="module"></script>
<style> <style>
#gallery-container { #gallery-container {
display: grid; display: grid;
@ -29,20 +29,20 @@
<header> <header>
<h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1> <h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1>
<nav> <nav>
<a aria-label="Projects" href="../index.html">PROJECTS</a> <a aria-label="Projects" href="/index.html">PROJECTS</a>
<a aria-current="page" aria-label="Photography" href="../photography.html">PHOTOGRAPHY</a> <a aria-current="page" aria-label="Photography" href="/photography.html">PHOTOGRAPHY</a>
<a aria-label="About Me" href="../about.html">ABOUT ME</a> <a aria-label="About Me" href="/about.html">ABOUT ME</a>
<a aria-label="Notes" href="../notes.html">CLASS NOTES</a> <a aria-label="Notes" href="/notes.html">CLASS NOTES</a>
</nav> </nav>
</header> </header>
<main> <main>
<div id="gallery-container"> <div id="gallery-container">
<modal-image class="photo" src="resources/photography/nature/1.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature/1.jpg" alt=""></modal-image>
<modal-image class="photo" src="resources/photography/nature/2.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature/2.jpg" alt=""></modal-image>
<modal-image class="photo" src="resources/photography/nature/3.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature/3.jpg" alt=""></modal-image>
<modal-image class="photo" src="resources/photography/nature/4.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature/4.jpg" alt=""></modal-image>
<modal-image class="photo" src="resources/photography/nature/5.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature/5.jpg" alt=""></modal-image>
<modal-image class="photo" src="resources/photography/nature/6.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature/6.jpg" alt=""></modal-image>
</div> </div>
</main> </main>
<footer> <footer>

View File

@ -5,10 +5,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Photography - Arthur Lu</title> <title>Photography - Arthur Lu</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="css/style.css" type="text/css"> <link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="css/overlay.css" type="text/css"> <link rel="stylesheet" href="/css/overlay.css" type="text/css">
<link rel="icon" type="image/x-icon" href="resources/icon/favicon.svg"> <link rel="icon" type="image/x-icon" href="/resources/icon/favicon.svg">
<script src="scripts/ModalImage.js" type="module"></script> <script src="/scripts/ModalImage.js" type="module"></script>
<style> <style>
#gallery-container { #gallery-container {
display: grid; display: grid;
@ -29,20 +29,20 @@
<header> <header>
<h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1> <h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1>
<nav> <nav>
<a aria-label="Projects" href="../index.html">PROJECTS</a> <a aria-label="Projects" href="/index.html">PROJECTS</a>
<a aria-current="page" aria-label="Photography" href="../photography.html">PHOTOGRAPHY</a> <a aria-current="page" aria-label="Photography" href="/photography.html">PHOTOGRAPHY</a>
<a aria-label="About Me" href="../about.html">ABOUT ME</a> <a aria-label="About Me" href="/about.html">ABOUT ME</a>
<a aria-label="Notes" href="../notes.html">CLASS NOTES</a> <a aria-label="Notes" href="/notes.html">CLASS NOTES</a>
</nav> </nav>
</header> </header>
<main> <main>
<div id="gallery-container"> <div id="gallery-container">
<modal-image class="photo" src="resources/photography/nature2/1.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature2/1.jpg" alt=""></modal-image>
<modal-image class="photo" src="resources/photography/nature2/2.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature2/2.jpg" alt=""></modal-image>
<modal-image class="photo" src="resources/photography/nature2/3.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature2/3.jpg" alt=""></modal-image>
<modal-image class="photo" src="resources/photography/nature2/4.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature2/4.jpg" alt=""></modal-image>
<modal-image class="photo" src="resources/photography/nature2/5.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature2/5.jpg" alt=""></modal-image>
<modal-image class="photo" src="resources/photography/nature2/6.jpg" alt=""></modal-image> <modal-image class="photo" src="/resources/photography/nature2/6.jpg" alt=""></modal-image>
</div> </div>
</main> </main>
<footer> <footer>

View File

@ -1 +0,0 @@
../resources/

View File

@ -1 +0,0 @@
../scripts/

35
projects/proxmoxaas.html Normal file
View File

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects - Arthur Lu</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="/css/style.css" type="text/css">
<link rel="stylesheet" href="/css/overlay.css" type="text/css">
<link rel="icon" type="image/x-icon" href="/resources/icon/favicon.svg">
<style>
.project {
max-width: 1080px;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<header>
<h1><b><a aria-label="Arthur Lu" href="https://root.tronnet.net" class="site-header">ARTHUR LU</a></b></h1>
<nav>
<a aria-current="page" aria-label="Projects" href="/index.html">PROJECTS</a>
<a aria-label="Photography" href="/photography.html">PHOTOGRAPHY</a>
<a aria-label="About Me" href="/about.html">ABOUT ME</a>
<a aria-label="Notes" href="/notes.html">CLASS NOTES</a>
</nav>
</header>
<main>
<h2>ProxmoxAAS</h2>
</main>
<footer>
</footer>
</body>
</html>