-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.html
More file actions
101 lines (95 loc) · 5.35 KB
/
github.html
File metadata and controls
101 lines (95 loc) · 5.35 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Robert Simons MSc</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" type="text/css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.1.1/css/hover-min.css" type="text/css" />
<link rel="stylesheet" href="assets/css/github-styles.css" type="text/css">
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="assets/js/github-information.js"></script>
</head>
<body>
<header class="container-fluid">
<div class="row">
<a href="index.html">
<div class="col-md-4 logo"></div>
</a>
<div class="col-md-8">
<div class="row bg-color-name-title">
<div class="heading">
<h1 class="name">Robert Simons MSc</h1>
<h2 class="title"> Full Stack Developer</h2>
</div>
</div>
<div class="row">
<ul id="nav" class="list-inline clearfix">
<li class="col-xs-6 col-sm-2 ui-menu-color-home menuitem">
<a href="index.html" class="hvr-sweep-to-bottom"><i class="fa fa-home" aria-hidden="true"></i><span>Home</span></a>
</li>
<li class="col-xs-6 col-sm-2 ui-menu-color-resume menuitem">
<a href="resume.html" class="hvr-sweep-to-bottom"><i class="fa fa-graduation-cap" aria-hidden="true"></i><span>Resume</span></a>
</li>
<li class="col-xs-6 col-sm-2 ui-menu-color-contact menuitem">
<a href="contact.html" class="hvr-sweep-to-bottom"><i class=" fa fa-commenting-o" aria-hidden="true"></i><span>Contact</span></a>
</li>
<li class="col-xs-6 col-sm-2 ui-menu-color-interests menuitem">
<a href="interests.html" class="hvr-sweep-to-bottom"><i class="fa fa-users" aria-hidden="true"></i><span>Interests</span></a>
</li>
<li class="col-xs-6 col-sm-2 ui-menu-color-github menuitem">
<a href="github.html" class="hvr-sweep-to-bottom"><i class="fa fa-github" aria-hidden="true"></i><span>GitHub</span></a>
</li>
<li class="col-xs-6 col-sm-2 ui-menu-color-download menuitem">
<a href="assets/cv/Robert_Simons_Curriculum_Vitae.pdf" target="_blank" class="hvr-sweep-to-bottom"><i class="fa fa-download" aria-hidden="true"></i><span>Download CV</span></a>
</li>
</ul>
</div>
</div>
</div>
</header>
<section class="container-fluid">
<div class="row bg-color-contact">
<div>
<h3 class="contact-heading uppercase text-center">View My GitHub Projects:</h3>
<h5 class="uppercase text-center">(or change the username to search for other user profiles)</h5>
</div>
<div class="center-form">
<input type="text" id="gh-username" value="robsimons1" oninput="fetchGitHubInformation()">
<div id="gh-user-data" class="clearfix"></div>
<div id="gh-repo-data" class="clearfix"></div>
</div>
</div>
</section>
<footer class="container-fluid">
<div id="footer-details" class="row">
<div class="col-sm-4">
<h5 class="uppercase general-sub">About</h5>
<p class="inline-block">
Full Stack Web Developer. Skilled in everything from HTML to Heroku. The capacity for structural and design thinking.
</p>
</div>
<div class="col-sm-4">
<h5 class="uppercase general-sub">Download My CV</h5>
<p class="inline-block">
Need a printable version of my CV? Download it here.
<a href="assets/cv/Robert_Simons_Curriculum_Vitae.pdf" target="_blank" class="cv-pdf"><i class="fa fa-download" aria-hidden="true"></i></a>
</p>
</div>
<div class="col-sm-4">
<h5 class="uppercase general-sub">MySocial</h5>
<ul class="list-inline social-links">
<li><a target="_blank" href="#"><i class="fa fa-facebook"></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-twitter"></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-linkedin"></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-pinterest"></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-instagram"></i></a></li>
<li><a target="_blank" href="#"><i class="fa fa-youtube"></i></a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>