-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (129 loc) · 4.62 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
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sherif Olanrewaju: Project Portfolio</title>
<link rel="stylesheet" href="styles/main.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Cardo"/>
</head>
<body>
<main class="overflow--auto">
<h1 class="color--skyBlue section__heading--largest">
<!--Your name goes here -->
Sherif Olanrewaju
</h1>
<ul class="section--social">
<!--Links to relevant professional social media & resume -->
<!-- See: http://fontawesome.io/icons/#brand for more -->
<!-- Link to Linked In profile -->
<li class="socialWrapper">
<a class="color--skyBlue social"
title="LinkedIn Profile"
target="_blank"
href="#">
<i class="fa fa-linkedin"></i>
</a>
</li>
<!-- Link to GitHub profile -->
<li class="socialWrapper color--skyBlue">
<a class="social color--skyBlue"
title="GitHub Profile"
target="_blank"
href="#">
<i class="fa fa-github"></i>
</a>
</li>
<!-- Link to resume, probably a .pdf -->
<li class="socialWrapper">
<a class="social color--skyBlue"
title="Resume"
href="#">
<i class="fa fa-file-text"></i>
</a>
</li>
</ul>
</main>
<section class="background--skyBlue section">
<h2 class="color--cloud margin--none section__text--centered">
Portfolio
</h2>
</section>
<section class="section section--alignCentered section--description">
<div class="section__exampleWrapper">
<div class="section__example">
<img alt="example screenshot of a project involving code"
class="section__exampleImage"
src="images/example1.png"/>
<dl class="color--cloud">
<dt class="section__exampleTitle section__text--centered">
Valise
</dt>
<dd></dd>
</dl>
</div>
</div>
<div class="section__exampleWrapper">
<div class="section__example">
<img alt="example screenshot of a project involving chemistry"
class="section__exampleImage"
src="images/example2.png"/>
<!-- “Chemistry” by Surian Soosay is licensed under CC BY 2.0
https://www.flickr.com/photos/ssoosay/4097410999 -->
<dl class="color--cloud">
<dt class="section__exampleTitle section__text--centered ">
Grassroot
</dt>
<dd></dd>
</dl>
</div>
</div>
<div class="section__exampleWrapper">
<div class="section__example">
<img alt="example screenshot of a project involving cats"
class="section__exampleImage"
src="images/example3.png"/>
<!-- “Bengal cat” by roberto shabs is licensed under CC BY 2.0
https://www.flickr.com/photos/37287295@N00/2540855181 -->
<dl class="color--cloud">
<dt class="section__exampleTitle section__text--centered">
Reseau
</dt>
<dd></dd>
</dl>
</div>
</div>
</section>
<section class="background--skyBlue section">
<h2 class="color--cloud margin--none section__text--centered">
About Me
</h2>
</section>
<section class="section section--alignCentered section--description">
<p class="color--darkgrey section__description">
A libertarian coder whose vision is for a better humanity is through the creation of ingenious innovations while
wandering the pristine destinations of Earth.
</p>
<div class="background--skyBlue modal--closed">
<span class="color--cloud modal__closeButton">
<i class="fa fa-window-close-o"></i>
</span>
<img alt="example screenshot of a project involving code"
class="modal__image"
src="images/example1.png"/>
<div class="color--cloud modal__text">
<h2 class="modal__title">
Work Example Name
</h2>
<a class="color--skyBlue modal__link"
href="#">
Check it out
</a>
<p class="modal__description">
A long description of the project in question.
</p>
</div>
</div>
</body>
</html>