commit e299b92087c3ef7701af7f89a3d7eb780f920c7a
Author: Jo Young <>
Date: Sun, 15 Feb 2026 16:28:45 +0000
Root Commit
Diffstat:
4 files changed, 112 insertions(+), 0 deletions(-)
diff --git a/index.html b/index.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <link rel=stylesheet href="stylesheet.css">
+ <meta name=viewport content="width=device-width, initial-scale=1.0">
+ <title>
+ Iona Davis-Noble Portfolio
+ </title>
+ </head>
+ <body>
+ <header>
+ <h2 style="text-align: center">
+ Iona
+ <hr hidden>
+ <a href="">
+ <img style="float:right" src="data:image/avif;base64,M4_AVIF_INSTAGRAM_BASE64" alt=instagram>
+ </a>
+ </h2>
+ </header>
+ <nav class=nav>
+ <div class=nav-item onclick="openTab(event, 'about')" id=nav-item-about>About</div>
+ <div class=nav-item onclick="openTab(event, 'animals')" id=nav-item-animals>Animals</div>
+ <div class=nav-item onclick="openTab(event, 'people')" id=nav-item-people>People</div>
+ <div class=nav-item onclick="openTab(event, 'sketches')" id=nav-item-sketches>Sketches</div>
+ </nav>
+ <main>
+ <div class=tabcontent id=about>
+ <img class=profile-image src="placeholder.avif" width=200 height=200>
+
+ <p class=about>
+ I'd just like to interject for a moment. What you're refering to as Linux, is in fact, GNU/Linux, or as I've recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX.<br>Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called Linux, and many of its users are not aware that it is basically the GNU system, developed by the GNU Project.<br>There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine's resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called Linux distributions are really distributions of GNU/Linux!
+ </p>
+ </div>
+ <div class=tabcontent id=animals>
+ <h1>ANIMALS!</h1>
+ </div>
+ <div class=tabcontent id=people>
+ <h1>PEOPLE!</h1>
+ </div>
+ <div class=tabcontent id=sketches>
+ <h1>SKETCHES!</h1>
+ </div>
+ </main>
+ <script src="script.js"></script>
+ </body>
+</html>
diff --git a/placeholder.avif b/placeholder.avif
Binary files differ.
diff --git a/script.js b/script.js
@@ -0,0 +1,34 @@
+function openTab(evt, target) {
+ var i,tabcontent,tablinks;
+
+ if (defaultTab === target) {
+ } else {
+ var url = location.pathname;
+ var params=new URLSearchParams(window.location.search);
+ params.delete('default');
+ params.append('default', target)
+ window.history.pushState('N', 'N', url+'?'+params)
+ }
+
+ tabcontent=document.getElementsByClassName("tabcontent");
+ for (i=0;i<tabcontent.length;i++){
+ tabcontent[i].style.display="none";
+ }
+
+ tablinks=document.getElementsByClassName("nav-item");
+ for (i=0;i<tablinks.length;i++){
+ tablinks[i].className="nav-item";
+ }
+
+ document.getElementById(target).style.display = "grid";
+ evt.currentTarget.className+=" nav-item-active";
+}
+
+var defaultTab;
+function loadDefault() {
+ defaultTab=new URLSearchParams(window.location.search).get('default');
+ if (!(['about','animals','people','sketches'].includes(defaultTab))){defaultTab='about';}
+ document.getElementById("nav-item-".concat(defaultTab)).click();
+}
+window.onpopstate = loadDefault;
+loadDefault();
diff --git a/stylesheet.css b/stylesheet.css
@@ -0,0 +1,32 @@
+header {
+ padding-left: 30px;
+ padding-right: 30px;
+ background-color: white;
+} .nav {
+ margin: auto;
+ width 80vw;
+ display: flex;
+ flex-direction: row;
+} .nav-item {
+ padding: 10px;
+ width: 25vw;
+ text-align: center;
+} .nav-item-active {
+ text-decoration: underline;
+} .tabcontent {
+ display: grid;
+ justify-items: center;
+ padding: 20px;
+ animation: fadeEffect 1s;
+} .profile-image {
+ object-fit: cover;
+} .about {
+ border: 1px solid black;
+ padding: 10px;
+ max-width: 500px;
+}
+
+@keyframes fadeEffect {
+ from {opacity: 0;}
+ to {opacity: 1;}
+}