-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (86 loc) · 3.25 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
86
87
88
89
90
91
92
93
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ethan Richardson's Page</title>
<link rel="stylesheet" type="text/css" href="homeStyle.css">
<script>
function writeCurrent(){
document.getElementById("curPage").innerHTML="You are here!";
}
</script>
</head>
<body>
<header>
Ethan Richardson
</header>
<nav>
<h3> CS350 Projects: </h3>
<ul>
<li><a href ="./HTMLBasics">Project1</a></li>
<li><a href ="./JSRegexFormValidation">Project2</a></li>
<li id="curPage"><a href ="#" onclick="writeCurrent()">Project3</a></li>
<li><a href ="./JSWheelOfFortune">Project4</a></li>
<li><a href ="http://www2.cs.siu.edu/~erichardson/Lab5">Project5</a></li>
<li><a href ="./AJAXPhotoGallery">Project6</a></li>
<li><a href ="http://www2.cs.siu.edu/~erichardson/Lab7">Project7</a></li>
<li><a href ="http://www2.cs.siu.edu/~erichardson/Lab8">Project8</a></li>
</ul>
<h3> Extras: </h3>
<ul>
<li><a href ="./PhaserVirtualCampus">Virtual Campus</a></li>
<li><a href ="http://siucacmgamertag.azurewebsites.net/GamerTag.aspx">GamerTagDB</a></li>
<br />
<li><a href ="https://github.com/ethanx94">View My Github</a></li>
</ul>
</nav>
<section>
<article> <p>
<img src="Photo.jpg" />
My name is Ethan Richardson and I am an aspiring Computer Science major at SIU Carbondale. Currently, I am a senior-level student on the B.A. track with a minor in Business Administration & Mathematics. I am also the chair of <a href="http://acm.rso.siu.edu/">ACM@SIUC</a>, a <a href="http://siuc.orgsync.com/org/salukiscienceambassadors">Saluki Science Ambassador</a>, and a proud member of <a href="http://www.openspace.io/">OpenSpace</a>.</p>
<br /><br /> Expected Graduation: Spring 2016
</article>
</section>
<aside>
<table border = "border">
<strong> CS Courses </strong><br />
<tr>
<th> Completed </th>
<th> Enrolled </th>
</tr>
<tr>
<td> Pyton </td>
<td> Computer <br /> Security </td>
</tr>
<tr>
<td> Java <br /> Intro </td>
<td> Algorithms <br /> Intro </td>
</tr>
<tr>
<td> Data <br /> Structures </td>
<td> Game <br /> Dev </td>
</tr>
<tr>
<td> Discrete <br /> Math </td>
</tr>
<tr>
<td> C <br /> (Linux/Unix) </td>
</tr>
<tr>
<td> Web <br /> Scripting </td>
</tr>
<tr>
<td> Agile <br /> Dev </td>
</tr>
</table>
</aside>
<footer>
<p><small>© Copyright 2016 Ethan Richardson
<br />Contact: [email protected]
<a href="mailto:[email protected]">
<img src="email.png" /></a>
</small>
</p>
</footer>
</body>
</html>