-
Notifications
You must be signed in to change notification settings - Fork 0
/
skills.html
67 lines (67 loc) · 3.14 KB
/
skills.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Skills</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css"/>
<link href='https://fonts.googleapis.com/css?family=Roboto:500' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="logo">
<h3><a href="">FOCAL</a></h3>
</div>
<nav>
<ul>
<li><a href="index.html"><span class="glyphicon glyphicon-home"></span> HOME</a></li>
<li><a href="gallery.html"><span class="glyphicon glyphicon-picture"></span> GALLERY</a></li>
<li><a href="about.html"><span class="glyphicon glyphicon-user"></span> ABOUT ME</a></li>
<li><a href="skills.html" class="active"><span class="glyphicon glyphicon-paperclip"></span> SKILLS</a></li>
<li><a href=""><span class="glyphicon glyphicon-file"></span> RESUME</a></li>
<li><a href="projects.html"><span class="glyphicon glyphicon-list-alt"></span> PROJECTS</a></li>
<li><a href="contacts.html"><span class="glyphicon glyphicon-envelope"></span> CONTACT ME</a></li>
</ul>
</nav>
</div>
<div class="row">
<div class="col-xs-6 col-md-6">
<h2>Hello world!</h2>
</div>
<div class="col-xs-12 col-sm-5 col-md-6">
<h2>Hehehehe hello world!</h2>
</div>
</div>
<div class="row">
<footer>
<p>COPYRIGHT 2015 FOCAL - BUILT WITH PASSION</p>
<div>
<a href=""><img src="img/facebookIcon.jpg" title="Follow me on facebook"/></a>
<a href=""><img src="img/twitterIcon.jpg" title="Follow me on twitter"/></a>
<a href=""><img src="img/googlePlusIcon.jpg" title="Follow me on google"/></a>
<a href=""><img src="img/linkedInIcon.jpg" title="Connect with me on linkedIn"/></a>
</div>
</footer>
</div>
</div>
<script rel="script" type="text/javascript" src="js/bootstrap.min.js"></script>
<script rel="script" type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
<script rel="script" type="text/javascript" src="js/app.js"></script>
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Roboto:500:latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})(); </script>
</body>
</html>