-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (81 loc) · 3.69 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!doctype html>
<html lang="en">
<head>
<base target="frame">
<meta charset="utf-8">
<title>My Page</title>
<link rel="stylesheet" href="css/main.css">
<script type="text/javascript" src="js/main.js"></script>
</head>
<body onload="setup()">
<header>It's All About Me</header>
<div class="content">
<div class="leftside">
<div class="image">
<span class="buffer">spacer</span>
<img alt="Mandalorian Mythosaur skull" width="70px" height="70px" src="images/images.jpg">
<span class="buffer">spacer</span>
</div>
<nav>
<br>
<a href="default.html">About Me</a>
<br>
<a href="resume.html">My Resume</a>
<p>
<a href="https://github.com/search?utf8=%E2%9C%93&q=user%3Aandy4274&type=Repositories&ref=advsearch&l=&l=">My GitHub Repositories</a>
<br>
My Class Projects
<br>
<a href="https://github.com/WebDevBootCampFall2017/Andy-connect-4">Connect4</a>
<br>
<a href="https://github.com/WebDevBootCampFall2017/AndyTextEditor">Text Editor</a>
<br>
<a href="https://andy4274.github.io/TicTacToePage/">Tic Tac Toe</a>
</p>
<p>My Android Apps
<br>
<a href="https://play.google.com/store/apps/details?id=com.jassoftware.numbersgame">Numbers Game</a>
<br>
<a href="https://play.google.com/store/apps/details?id=com.jassoftware.textmeeting">TextMeeting</a>
<br>
<a href="https://play.google.com/store/apps/details?id=com.jassoftware.quicktext">QuickText</a>
</p>
<p>Stuff I like
<br>
<a href="http://www.raiders.com">My Team</a>
<br>
<a href="https://www.gog.com/">Where I buy games</a>
</p>
</nav>
</div>
<div class="main_content" id="main">
<p> I want to be a software developer. I have played around with computers all my life. I started out using BASIC on a Commodore 64 back in the eighties, and have tried many other languages and platforms since. You can check my resume to see some of the things I've done lately.</p>
<p>When I'm not looking for work as a developer, I like to play bar trivia, watch football, and, surprising noone, play video games. I play some shooters, but mostly I like single player or offline RPG's. Skyrim was pretty much my favorite in a long time. I also like to get some classic games from GOG.com to play on my laptop.</p>
<p>As far as watching football goes, I've been a Raiders fan since I was 10, and will be till the day I die.</p>
<p>If you need to know more, email me. My address is on my resume.</p>
</div>
</div>
<div class="footer">
<p>These buttons control the background fade.</p>
<div class="footer_bar">
<div class="footer_bar_member">Start and Pause:<br>
<button onclick="startFade()" id="start">Start Fade</button>
</div>
<div class="footer_bar_member">Color and speed:<br>
<button onclick="cycleRed()" id="redButton">Turn off Red</button>
<button onclick="cycleGreen()" id="greenButton">Turn off Green</button>
<button onclick="cycleBlue()" id="blueButton">Turn off Blue</button><br>
</div>
<div class="footer_bar_member">
Set color step size:<br><input type="number" min="1" max="25" name="size" value="1" id="size" onchange="changeSize()"><br>
</div>
<div class="footer_bar_member">Text Color Options:<br>
<button onclick="redText()" id="redTextButton">Red Text</button>
<button onclick="greenText()" id="greenTextButton">Green Text</button>
<button onclick="blueText()" id="blueTextButton">Blue Text</button>
<button onclick="greyText()" id="greyTextButton">Grey Text</button>
</div>
</div>
</div>
</body>
</html>