-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (54 loc) · 2.49 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Daniel Taylor</title>
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png">
<link href="./style.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Josefin+Slab:300,400' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:700,300,100,100italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://unpkg.com/@coreui/icons/css/brand.min.css">
<script src="https://kit.fontawesome.com/829e1fad62.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src='./script.js'></script>
<script>
$(document).ready(function () {
loadTheme();
});
</script>
</head>
<body>
<div id="lightswitch" align="right">
Turn <span id="onoff">on</span> the lights:
<a id="toggle-lights" onclick="
$(this).toggleClass('fa-toggle-off fa-toggle-on');
if ($(this).hasClass('fa-toggle-on')) {
document.documentElement.setAttribute('data-theme', 'light');
localStorage.setItem('theme', 'light');
$('#onoff').text('off');
}
else {
document.documentElement.setAttribute('data-theme', 'default');
localStorage.setItem('theme', 'default');
$('#onoff').text('on');
}
"
class="fas fa-toggle-off" style="font-size:20px; vertical-align:middle;"></a>
</div>
<h1>Daniel Taylor</h1>
<img style="width:300px" src=./images/danieltaylor-2.png><br><br>
<a href="https://linkedin.com/in/danielpearsontaylor" class="icon" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://www.github.com/danieltaylor" class="icon" title="GitHub"><i class="fab fa-github"></i></a>
<a href="https://leetcode.com/danieltaylor" class="icon" title="LeetCode"><i class="cib-leetcode"></i></a>
<a href="https://dribbble.com/dptaylor" class="icon" title="Dribbble"><i class="fab fa-dribbble"></i></a>
<br><br>
<a href="./about/index.html">About Me</a><br>
<p> <div id="title">Projects</div>
<a class="project" href="https://github.com/danieltaylor/airpods-battery-widget">AirPods Widget</a><br>
<a class="project" href="./ascii/index.html">ASCII Art Generator</a><br>
<a class="project" href="./ascii/clock.html">ASCII Clock</a><br>
<a class="project" href="./ctf-writeups">CTF Writeups</a><br>
<a class="project" href="./repo">Cydia Repo</a><br>
<a class="project" href="./Daniel48">Daniel48</a><br>
<a class="project" href="./online-text-editor">Online Text Editor</a><br></p>
</body>
</html>