-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
139 lines (137 loc) · 7.05 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>John's Web Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="./index.css" />
</head>
<body data-spy="scroll" data-target="#my-nav-bar" offset="50">
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#my-nav-bar" aria-expanded="false">
<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="#">John O'Keefe</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-right" id="my-nav-bar">
<ul class="nav navbar-nav nav-tabs" role="tablist">
<!-- <li><a href="#top" id="home-btn">Home</a></li> -->
<li><a href="#about-me" id="about-btn">About Me</a></li>
<li><a href="#portfolio" id="portfolio-btn">Portfolio</a></li>
<li><a href="#contact" id="contact-btn">Contact Me</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<div class="container">
<!-- <span id="top" ></span> -->
<!-- section -> div.container -> div.row -> div.col -->
<!-- <header class="header-content">
<div class="container">
<h1>Heading</h1>
</div>
</header> -->
<!-- About me section -->
<span id="about-me" class="anchor"></span>
<section class="section about-me">
<div class="row">
<div class="col-sm-10">
<div class="push-down">
<h2><em>A little about me...</em></h2>
<p class="lead"><em>Hi, I'm John. Almost my entire life I've had a knack for and a passion for technology. And for the past two years I've been taking that passion and pointing it in the direction of web development, learning various web technologies such as HTML(5), CSS(3), Javascript, JQuery and coming soon... ReactJS.</em></p>
</div>
</div>
</div>
</section>
<!-- projects section -->
<span id="portfolio" class="anchor"></span>
<!-- take this part of the site and move it into React to render the names, links and images -->
<section class="section portfolio">
<div class="flex">
<h2 class="text-center">Portfolio</h2>
<div class="row text-center center-block">
<div class="col-md-3 col-sm-6">
<div class="thumbnail placeholder center-block">
<p class="lead"><em>Placeholder</em></p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="thumbnail placeholder center-block">
<p class="lead text-center"><em>Placeholder</em></p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="thumbnail placeholder center-block">
<p class="lead text-center"><em>Placeholder</em></p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="thumbnail placeholder center-block">
<p class="lead text-center"><em>Placeholder</em></p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="thumbnail placeholder center-block">
<p class="lead text-center"><em>Placeholder</em></p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="thumbnail placeholder center-block">
<p class="lead text-center"><em>Placeholder</em></p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="thumbnail placeholder center-block">
<p class="lead text-center"><em>Placeholder</em></p>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="thumbnail placeholder center-block">
<p class="lead text-center"><em>Placeholder</em></p>
</div>
</div>
</div>
</div>
</section>
<!-- contact section -->
<span id="contact" class="anchor"></span>
<section class="section contact">
<div class="row">
<div class="col-xs-12 text-center center-block">
<p class="lead">Find me on... </p>
<a href="https://www.facebook.com/nymusicman"><i id="social-fb" class="fa fa-facebook-square fa-5x social"></i></a>
<a href="https://twitter.com/nymusicman"><i id="social-tw" class="fa fa-twitter-square fa-5x social"></i></a>
<a href="https://plus.google.com/112969116759191707889"><i id="social-gp" class="fa fa-google-plus-square fa-5x social"></i></a>
<a href="mailto:jokeefe@fastmail.com"><i id="social-em" class="fa fa-envelope-square fa-5x social"></i></a>
</div>
</div>
</section>
</div>
<footer class="section">
<div class="row">
<div class="container-fluid">
<div class="text-center center-block">
©John O'Keefe
</div>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-scrollTo/2.1.2/jquery.scrollTo.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-localScroll/1.4.0/jquery.localScroll.min.js"></script>
<script src="./index.js"></script>
</body>
</html>