-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>Robert Young's Website</title> | ||
|
||
<!-- Bootstrap --> | ||
<link href="/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="/css/base.css" rel="stylesheet"> | ||
|
||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | ||
<!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | ||
<!--[if lt IE 9]> | ||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | ||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | ||
<![endif]--> | ||
</head> | ||
<body> | ||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> | ||
<!-- Include all compiled plugins (below), or include individual files as needed --> | ||
<script src="js/bootstrap.min.js"></script> | ||
|
||
<h1> | ||
<small>My name is</small> | ||
<b>Robert Young</b>. | ||
</h1> | ||
<p>I'm a junior in Software Engineering at Iowa State University. I take mostly Computer Science/Software Engineering | ||
courses, while working part time at <a href="http://webdev.its.iastate.edu">ITS WebDev</a>.</p> | ||
|
||
<h2>Game Design</h2> | ||
|
||
<p>In my free time, I am learning as much as I can about the design and implementation of video games. I have done | ||
several small projects both on my own and with other people. As a member of Iowa State's Game Development Club, I | ||
enjoy participating in Game Jams and workshops, as well as social nights. <br><br>A <b>Game Jam</b> is an event | ||
where you get together with two or three other people and try to make a game in a very short amount of time (usually 48 hours). | ||
<br><br> | ||
So far, my favorite tool to develop games with is <a href="http://unity3d.com/">Unity3d</a>, where the main language | ||
I use is C#.</p> | ||
|
||
<h4>Example Works</h4> | ||
<ul> | ||
<li><a href="/LD33">Ludum Dare 33</a> - "You are the monster"</li> | ||
<li>309 Project (Not Minecraft)</li> | ||
<li>Whatever I end up making this weekend</li> | ||
<li>Project for 362</li> | ||
<li>Project for 336</li> | ||
<li>More coming soon! I just need to find where I put them!</li> | ||
</ul> | ||
</body> | ||
</html> |