-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·123 lines (103 loc) · 5.55 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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">
<meta name="description" content="">
<meta name="author" content="">
<title>Colin Schoen</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/grayscale.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/animate.min.css">
<!-- HTML5 Shim and Respond.js 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/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top">
<!-- Navigation -->
<nav class="navbar navbar-custom navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse">
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="#page-top">
<img class="img-rounded" style="width: 20px;" src="http://en.gravatar.com/userimage/58525498/6780e62159182eb6f170508ac816b933.png?size=200" alt="Avatar" /> <span class="light">colinschoen.me</span>
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right navbar-main-collapse">
<ul class="nav navbar-nav">
<!-- Hidden li included to remove active class from about link when scrolled up past about section -->
<li class="hidden">
<a href="#page-top"></a>
</li>
<li><a class="page-scroll" href="#home">Home</a></li>
<li>
<a class="page-scroll" href="#about">About</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Home Section :P -->
<header id="home" class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="brand-heading animated flipInX">Colin Schoen</h1>
<div class="animated fadeInLeftBig">
<a href="http://github.com/colinschoen" target="_blank"><button class="btn btn-info"><i class="fa fa-github"></i> GitHub</button></a>
<a href="http://stackoverflow.com/users/1938911/colin-schoen" target="_blank"><button class="btn btn-info"><i class="fa fa-stack-overflow fa-fw"></i> StackOverflow</button></a>
<a href="https://linkedin.com/profile/view?id=175987616" target="_blank"><button class="btn btn-info"><i class="fa fa-linkedin"></i> LinkedIn</button></a>
<a href="http://twitter.com/colinschoen" target="_blank"><button class="btn btn-info"><i class="fa fa-twitter"></i> Twitter</button></a>
</div>
<hr />
<p class="intro-text" style="font-size: 20px;"><i class="fa fa-code-fork fa-fw"></i> Open Source Enthusiast | <i class="fa fa-code fa-fw"></i> Software Developer | <i class="fa fa-university fa-fw"></i> UC Berkeley Student</p>
<hr/>
<a href="#about" class="btn btn-circle page-scroll">
<i class="fa fa-angle-double-down animated"></i>
</a>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="container text-center" style="margin-top: 100px; margin-bottom: 80px;">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>About Me</h2>
<p>I'm an Open Source Enthusiast, Web Developer and Student at the University of California Berkeley. I am also currently a team member on the widely used open source forum project, Simple Machines Forum. I enjoy working with others to build things that <strong>change the way we work.</strong></p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container text-center">
<p><small>Copyright © ColinSchoen.me 2014</small></p>
</div>
</footer>
<!-- jQuery Version 1.11.0 -->
<script src="js/jquery-1.11.0.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/grayscale.js"></script>
</body>
</html>