blob: 199a95177c024722d1d10efd9ff7a80b9285ad6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
<!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/main.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><a href="https://jacobmcdonnell.com/morsecode/">Morse code</a></li>
<li><a href="https://jacobmcdonnell.com/binary/" id="pLink">Binary</a></li>
<li><a href="https://jacobmcdonnell.com/Pacman/" id="pLinks">Google Pacman</a></li>
<li><a href="https://duckduckgo.com/">DuckDuckGo</a></li>
<li><a href="https://mail.google.com/mail/?tab=wm&authuser=0&ogbl">Gmail</a></li>
<li><a href="https://play.google.com/music/listen?authuser&u=0#/home">Google Play Music</a></li>
<li><a href="https://photos.google.com/">Google Photos</a></li>
<li><a href="https://domains.google.com/m/registrar/">Google Domains</a></li>
<li><a href="https://drive.google.com/drive/u/0/my-drive">Google Drive</a></li>
<li><a href="https://www.youtube.com">Youtube</a></li>
<li><a href="https://www.github.com/">Github</a></li>
<li><a href="https://8values.github.io/">8Values</a></li>
<li><a href="https://www.politicalcompass.org/test/">Political Compass</a></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>
<li><a href="https://jacobmcdonnell.com/settings.html">Settings and Information</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>
|