-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathabout-info.html
More file actions
90 lines (90 loc) · 4.01 KB
/
about-info.html
File metadata and controls
90 lines (90 loc) · 4.01 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Suez+One" rel="stylesheet">
<link rel="stylesheet" href="reset.css" type="text/css">
<link rel="stylesheet" href="about.css" type="text/css">
<title></title>
</head>
<body>
<header>
<h1>SCuTtle Your Memory!</h1>
<br>
<hr />
<br>
<h2>High Scores</h2>
<nav class="navtop">
<div class="navlist">
<a class="navlink" href="index.html">Main</a>
</div>
<div class="navlist">
<a class="navlink" href="game.html">Play Again</a>
</div>
</nav>
<br>
<div class="easy">
<h3>Easy</h3>
<ol id= "high_score_easy">
</ol>
</div>
<div class="medium">
<h3>Medium</h3>
<ol id="high_score_med">
</ol>
</div>
<div class="hard">
<h3>Hard</h3>
<ol id="high_score_hard">
</ol>
</div>
</header>
<main>
<div class="tablebackground">
<div class="scuttling">
<div class="people">
<img src="imgs/Tom%20Web.jpg" class="tom">
<h4>Tom</h4>
<p> Tom Timmel is new to the world of coding. He comes from a business management background working mostly in tourism in Alaska. Tom has a Bachelors degree in Business Administration from Bowling Green State University and a Master's degree in Inclusive Education from Nazareth College in Rochester, N.Y. Tom is happiest when he is outdoors during any season hiking, skiing, paddling, or playing Ultimate. Check out the following links for more information.</p>
<br />
<ul class="peoplelinks">
<li><a href="https://www.linkedin.com/in/tom-timmel-896263122?trk=hp-identity-name" target="_blank"><h5>LinkedIn</h5></a></li>
<li><a href="https://github.com/TomTimmel" target="_blank"><h5>Github</h5></a></li>
</ul>
</div>
<div class="people">
<img src="imgs/Chris.JPG" class="chris">
<h4>Chris</h4>
<p>Christopher Bruner finished his B.S. in Chemistry at California State Univeristy Long Beach and finished his Ph.D. in Physical Chemistry and Materials Engineering at Stanford University. His work experience as a product development engineer and data analyst at Intel opened up new horizons towards the field of computer science. To that end he is currently pursuing finishing a web development workshop lead by Code Fellows. He has working experience in statistics and data analysis, object-oriented programming, and relational databases. Specialties include data-driven problem solving, team collaborations and mentoring. His hobbies include video games, hiking, art, and reading books.</p>
<br />
<ul class="peoplelinks">
<li><a href="https://www.linkedin.com/in/christopher-bruner-48046378" target="_blank"><h5>LinkedIn</h5></a></li>
<li><a href="https://github.com/QuantumArchive" target="_blank"><h5>GitHub</h5></a></li>
</ul>
</div>
<div class="people">
<img src="imgs/steven.jpg" class="steven">
<h4>Steven</h4>
<p>Steven Jackson loves creating, leading, and playing games of all sorts. He has a degree from Oklahoma State University studying Recreation Services. He has a long history in computer hardware and graphic design, but has just begun working in javascript where he has developed the skills to produce what you see before you. He loves a good challenge and loves even more spending time outside. Check out more about Steven with the following links!</p>
<br />
<ul class="peoplelinks">
<li><a href="https://www.linkedin.com/in/steven-jackson-70342421" target="_blank"><h5>LinkedIn</h5></a></li>
<li><a href="https://www.github.com/hpats67" target="_blank"><h5>GitHub</h5></a></li>
</ul></p>
</div>
</div>
</div>
</main>
<footer>
<nav class="navfooter">
<div class="navlist">
<a class="navlink" href="index.html">Main</a>
</div>
<div class="navlist">
<a class="navlink" href="game.html">Play Again</a>
</div>
</nav>
</footer>
<script src="about-info.js" type="text/javascript"></script>
</body>
</html>