-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (111 loc) · 3.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>My Portfolio</title>
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<script type="text/javascript" src="js/app.js"></script>
</head>
<body>
<header>
<a href="/" class="header-logo">
<img src="http://gorigins.com/wp/wp-content/uploads/2016/02/android-chrome-72x72.png" alt="Jerez Bain OCADU">
<span>Jerez Bain</span>
</a>
<ul class="header-nav">
<li class="nav-item"><a href="#about">About</a></li>
<li class="nav-item"><a href="#picture">Picture</a></li>
<li class="nav-item"><a href="#assignments">Assignments</a></li>
<li class="nav-item"><a href="#past">Past Work</a></li>
</ul>
</header>
<main class="main">
<div class="flex-grid" id="about">
<div class="col text-center">
<p>My name is Jerez Bain, and welcome to my OCADU Portfolio Website!<br>
You can also visit my professional <a target="_blank" href="http://gorigins.com">portfolio</a>.
</p>
</div>
</div>
<div class="flex-grid bg-grey" id="picture">
<div class="col">
<figure>
<img src="https://i0.wp.com/gorigins.com/wp/wp-content/uploads/2016/05/Red_Unleashed_2.0.jpg?fit=1024%2C640"
alt="08 Unleashed" class="img-responsive">
<figcaption>
Cool Picture of a Desktop Theme I made a long time ago. Check it out
<a target="_blank" href="http://gorigins.com/portfolio/astonshell-unleashed-collection/">here</a>.
</figcaption>
</figure>
</div>
</div>
<div class="flex-grid flex-grid-3" id="assignments">
<div class="header">
<h2 class="text-center">Assignments</h2>
</div>
<div class="col">
<h3 class="text-center">
<a href="#">
<span class="fa-stack fa-lg fa-4x">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-folder fa-stack-1x fa-inverse"></i>
</span>
<br> Assignment 2
</a>
</h3>
</div>
<div class="col">
<h3 class="text-center">
<a href="#">
<span class="fa-stack fa-lg fa-4x">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-folder fa-stack-1x fa-inverse"></i>
</span>
<br> Assignment 3
</a>
</h3>
</div>
<div class="col">
<h3 class="text-center">
<a href="#">
<span class="fa-stack fa-lg fa-4x">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-folder fa-stack-1x fa-inverse"></i>
</span>
<br> Assignment 4
</a>
</h3>
</div>
</div>
<div class="flex-grid bg-grey" id="past">
<div class="header">
<h2 class="text-center">Past Work</h2>
</div>
<div class="col">
<h3 class="text-center">
<a target="_blank" href="http://tabletops.io">
<img src="https://i1.wp.com/gorigins.com/wp/wp-content/uploads/2016/02/web-app-ss.jpg?zoom=2&fit=1899%2C1266"
alt="Tabletops" class="img-responsive">
<br> Tabletops Website and Mobile App
</a>
</h3>
</div>
<div class="col">
<h3 class="text-center">
<a>
<iframe width="560" height="315" src="https://www.youtube.com/embed/mlBs1ebG5iI" frameborder="0" allowfullscreen></iframe>
<br> Art & Code Rube Goldberg Machine
</a>
</h3>
</div>
</div>
</main>
<footer>
<div class="flex-grid">
<div class="col"><h2 class="text-center">Jerez Bain @ OCAD University <i class="fa fa-heart"></i> 2016 - 2017</h2></div>
</div>
</footer>
</body>
</html>