-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (100 loc) · 4.42 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
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, minimumscale=1.0, maximum-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="./styles.css" />
<link rel="shortcut icon" type="image/x-icon" href="media/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Karla:400,400italic,700,700italic" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Rokkitt%7COpen+Sans:300italic,400italic,600italic,700italic,400,300,600,700" rel='stylesheet'>
<title>Ryan Bell</title>
</head>
<body>
<header>
<a class="inner" href="./index.html" >RYAN BELL</a>
</header>
<!--<div id="about">-->
<!--<p>About Me</p>-->
<!--<div id="console">-->
<!--> Ryan.education<br>-->
<!--<span class="answer"> => "Rochester Institute of Technology"</span><br>-->
<!--<br>-->
<!--> Ryan.majors<br>-->
<!--<span class="answer"> => ["Software Engineering", "Game Design and Development"]</span><br>-->
<!--<br>-->
<!--> Ryan.graduation<br>-->
<!--<span class="answer"> => "May 2019"</span><br>-->
<!--<br>-->
<!--> Ryan.interests<br>-->
<!--<span class="answer"> => ["3D modeling", "Programming", "Music", "Path Tracers"]</span><br>-->
<!--<br>-->
<!--> Ryan.links<br>-->
<!--<span class="answer"> => ["<a target="_blank" href="https://github.com/Ryan-Bell">Github</a>", "<a target="_blank" href="mailto:[email protected]">Email</a>", "<a target="_blank" href="ryanbellresume.pdf">Resume</a>"]</span><br>-->
<!--<br>-->
<!--> Ryan.experience<br>-->
<!--<span class="answer">-->
<!-- => {<br>-->
<!-- "<a target="_blank" href="http://bricksimple.com">BrickSimple</a>": {<br>-->
<!-- "role": "Built virtual reality apps for the HTC Vive using Unity",<br>-->
<!-- "start date": "June 2016",<br>-->
<!-- "end date": "August 2016"<br>-->
<!-- },<br>-->
<!-- "<a target="_blank" href="http://www.geaviation.com">General Electric Aviation</a>": {<br>-->
<!-- "role": "Built an OAuth npm module, built a resource tracking site",<br>-->
<!-- "start date": "August 2016",<br>-->
<!-- "end date": "December 2016"<br>-->
<!-- }<br>-->
<!-- }<br>-->
<!--</span>-->
<!--</div>-->
<!--</div>-->
<div id="work">
<div class="inner">
<p class="tagline">Projects</p>
<!-- Example of a big tile although the image can't be as tall as this one
<div class="portfolio-thumb portfolio-big">
<a href="./minion.html"><img src="./media/minionfront.png"></a>
<p class="description"><b>Minion</b> This is a minion</p>
</div>
-->
<div class="row">
<div class="portfolio-thumb">
<a href="./switchblade.html"><img src="./media/sbthumb.png" alt="SwitchBlade Project"></a>
<p><b>SwitchBlade</b></p>
</div>
<div class="portfolio-thumb">
<a href="./minion.html"><img src="./media/minionfront.png" alt="Minion Project"></a>
<p><b>Minion</b></p>
</div>
</div>
<div class="row">
<div class="portfolio-thumb">
<a href="./music.html">
<img src="./media/musicthumb.png" alt="Music Visualizer Project">
</a>
<p><b>Music Visualizer</b></p>
</div>
<div class="portfolio-thumb">
<a href="./asteroids.html">
<img src="./media/asteroidthumb.png" alt="Asteroid Project">
</a>
<p><b>Asteroids</b></p>
</div>
<div class="portfolio-thumb">
<a href="./starwars.html">
<img src="./media/starWarsThumb.jpg" alt="Star Wars Project">
</a>
<p><b>Star Wars Edit</b></p>
</div>
</div>
</div>
</div>
<footer>
<div class="inner">
© 2018 Ryan Bell
</div>
</footer>
</body>
</html>