forked from SethGower/sethgower.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (90 loc) · 4.87 KB
/
index.html
File metadata and controls
94 lines (90 loc) · 4.87 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
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="resources/font-awesome-4.7.0/css/font-awesome.css">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Seth Gower</title>
<!-- Bootstrap -->
<link href="resources/css/bootstrap.min.css" rel="stylesheet">
<link href="main.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Seth Gower</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<div id="about" class=" card">
<h1>About Me</h1>
<p>
I am a first year Computer Engineering student at the Rochester Institute of Technology.
<br>
I am a member of <a href="https://csh.rit.edu" target="_blank">Computer Science House</a>.
</p>
</div>
<div class=" card" id="projects">
<h2>Projects</h2>
<p>These are some of the projects I have made over the years. </p>
<div class="row">
<ul style="list-style: none; padding-left: 0;">
<li class="col-md-4">
<h3><a href="https://github.com/sethgower/suds">SUDS</a></h3>
<p>SUDS is the Shower Use Detection System. It shows the occupancy status of the showers in my dorm hall (Computer Science House).
<br> This is my <a href="https://blog.csh.rit.edu/2017/11/02/suds/" target="_blank">Blog Post</a> about SUDS on the CSH blog.</p>
</li>
<li class="col-md-4">
<h3><a href="https://github.com/sethgower/botfighting">Bot Fighting</a></h3>
<p>This was a small game that I made a couple years ago with LWJGL and OpenGL.</p>
</li>
</ul>
</div>
</div>
<div class=" card" id="contact">
<h1>Contact Me</h1>
<p>Feel free to contact me with any of the following methods. My resume can be found <a href="/resume.pdf" target="_blank">here</a>.</p>
<ul class="list-inline banner-social-buttons">
<li>
<a href="https://github.com/sethgower/" class="btn btn-default btn-lg" target="_blank"><i class="fa fa-github-square fa-fw"></i> <span class="github">GitHub</span></a>
</li>
<li>
<a href="https://facebook.com/sethgower.16" class="btn btn-default btn-lg" target="_blank"><i class="fa fa-facebook fa-fw"></i> <span class="facebook">Facebook</span></a>
</li>
<li>
<a href="mailto:seth@sethgower.com" class="btn btn-default btn-lg" target="_blank"><i class="fa fa-envelope fa-fw"></i> <span class="email">seth@sethgower.com</span></a>
</li>
</ul>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="../../assets/js/vendor/jquery.min.js"><\/script>')</script>
<script src="resources/js/bootstrap.min.js"></script>
</body>
</html>