summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rwxr-xr-xindex.html93
1 files changed, 20 insertions, 73 deletions
diff --git a/index.html b/index.html
index cb372ef..53ccc1b 100755
--- a/index.html
+++ b/index.html
@@ -1,74 +1,21 @@
-<!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">
- <meta name="description" content="This is the personal website for the real Jacob McDonnell. Feel free to look around, you might find something interesting."/>
- <meta name="author" content="Jacob McDonnell"/>
- <meta name="keywords" content="Jacob,McDonnell,Jacob McDonnell"/>
- <title>Jacob McDonnell</title>
- <link id="cssFile" href="CSS/PurpleAndDark.css" rel="stylesheet" type="text/css">
- <script src="JS/main.js"></script>
- <script src="JS/cookies.js"></script>
- <script src="JS/command.js"></script>
- </head>
- <body onkeydown="keyCode(event)" onload="FocusOnInput(),checkCookie(),setCookie('theme', getCookie('theme', 365))">
- <aside id="NavBar">
- <img src="images\menu.svg" id="menuicon" class="menuimg">
- <nav>
- <ul id="menuLinks">
- <p id="menuX" class="MenuX">X</p>
- <li><a href="https://jacobmcdonnell.com/">Home</a></li>
- <li><button onclick="dropdown('pages')" class="dropbtn">Pages</button>
- <div id="pages" class="dropdown-content">
- <a href="https://jacobmcdonnell.com/">Home</a>
- <a href="https://jacobmcdonnell.com/morsecode/">Morse code</a>
- <a href="https://jacobmcdonnell.com/binary/" id="pLink">Binary</a>
- <a href="https://jacobmcdonnell.com/Pacman/" id="pLinks">Google Pacman</a>
- <a href="https://jacobmcdonnell.com/settings.html">Settings and Information</a>
- <a href="https://jacobmcdonnell.com/extensions.html">Chrome Extensions</a>
- </div></li>
- <li><a href="https://duckduckgo.com/">DuckDuckGo</a></li>
- <li><button onclick="dropdown('gsites')" class="dropbtn">Google Sites</button>
- <div id="gsites" class="dropdown-content">
- <a href="https://mail.google.com/mail/?tab=wm&authuser=0&ogbl">Gmail</a>
- <a href="https://play.google.com/music/listen?authuser&u=0#/home">Google Play Music</a>
- <a href="https://photos.google.com/">Google Photos</a>
- <a href="https://domains.google.com/m/registrar/">Google Domains</a>
- <a href="https://drive.google.com/drive/u/0/my-drive">Google Drive</a>
-
- </div></li>
- <li><a href="https://www.youtube.com">Youtube</a></li>
- <li><button onclick="dropdown('gitSites')" class="dropbtn">Git Sites</button>
- <div id="gitSites" class="dropdown-content">
- <a href="https://www.github.com/">Github</a>
- <a href="https://gitlab.com/">GitLab</a>
- </div></li>
- <li><a href="https://www.twitch.tv/">Twitch</a></li>
- <li><a href="http://www.w3schools.com/html/default.asp">html tutorial</a></li>
- </ul>
- </nav>
- </aside>
- <main>
- <div class="logo"><br></div>
- <input id="Search" class="search" type="text" placeholder="Search..." onkeydown="searchDuck(event)"/>
- </main>
- <script>
- (function() {
- var menu = document.querySelector('ul'),
- menulink = document.getElementById('menuicon'),
- menuclose = document.getElementById('menuX');
- menulink.addEventListener('click', function(e) {
- menu.classList.toggle('active');
- e.preventDefault();
- });
- menuX.addEventListener('click', function(e) {
- menu.classList.toggle('active');
- e.preventDefault();
- });
- })();
-
- </script>
- </body>
+<html>
+ <head>
+ <title>Jacob McDonnell</title>
+ <link href="CSS/main.css" rel="stylesheet" type="text/css">
+ </head>
+ <body>
+ <ul>
+ <li><a href="https://jacobmcdonnell.com/">home</a></li>
+ <li><a href="https://gitlab.com/Jacob_McDonnell/">git</a></li>
+ <li><a href="https://jacobmcdonnell.com/#projects">projects</a></li>
+ <li><a href="https://jacobmcdonnell.com/#about">about</a></li>
+ </ul>
+ <div class="main">
+ <h2><a name="projects">Projects</a></h2>
+ <p><a href="https://gitlab.com/Jacob_McDonnell/jars">JARS</a> is my linux auto ricing script for arch linux. It's not that good but it works most of the time, and I don't do many fresh installs anyway.</p>
+ <p><a href="https://gitlab.com/Jacob_McDonnell/dotfiles">My dotfiles</a> for linux. I like them and they are nice</p>
+ <h2><a name="about">About</a></h2>
+ <p>I'm Jacob McDonnell. I have been interested in computers since I was young. My father has been in the technology field since before I was born, so I guess that interest came from him. <br><br> My interests, with respect to computers, are programming, UNIX/Plan9, and electronics/hardware. I know how to program in Java thanks to a high school course, however I am not a fan of it. Currently I am learning C, specifically Plan9 C. I hope to write my own operating system one day because I have not found an operating system that has pleased me yet. In my free time I like to play basketball, row, practice German, and play guitar. <br><br> I do not know what I will do with this website just yet. I do plan on hosting my own git server soon, maybe I will write articles about projects that I am working on.</p>
+ </div>
+ </body>
</html>