-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (110 loc) · 5.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="google-site-verification" content="64OmJJzVU9TiKR8-xmcc4VMRjtFiXOmUIy8XYxBU66A" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dexter Rualo</title>
<script src="https://use.fontawesome.com/3edc314dfc.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
body {
position: relative;
}
section {
height: 600px;
padding-top: 50px;
}
hr {
border-color: darkgray;
border-style: solid none;
border-width: 2px 0;
}
.social {
font-size: 2em;
padding-top: 50px
}
#home {
padding-top: 100px;
}
#quote {
font-size: 20px;
margin-top: 100px;
}
.port-div {
padding-top: 50px;
}
.profilepic {
height: 225px;
width: 225px;
}
</style>
</head>
<body data-spy="scroll" data-target="#navbar">
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<span class="navbar-brand">Dexter Rualo</span>
</div>
<div id="navbar" class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav">
<li class="active"><a href="#home">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<main class="container">
<section id="home">
<div class="col-md-10 col-md-offset-1">
<img src="images/profilepic.jpeg" class="profilepic image-responsive img-thumbnail center-block" />
<h2 class="text-primary text-center">Dexter Rualo</h2>
<p class="text-center text-muted lead">Freelance Web Developer</p>
<p class="text-center lead text-primary">I am Dexter Rualo, a self taught freelance web developer based in the Philippines. I am proficient in Javascript, HTML5, CSS3, Bootstrap and jQuery.</p>
</div>
</section>
<section id="portfolio">
<h3 class="text-primary text-center">PORTFOLIO</h3>
<hr>
<div class="row">
<div class="col-md-4 col-md-offset-2 social">
<a href="https://dexrualo.com/pomodoro" target="_blank">Pomodoro</a><br><br>
<a href="https://dexrualo.com/js-calculator" target="_blank">JS Calculator</a><br><br>
<a href="https://dexrualo.com/wiki-viewer" target="_blank">Wiki Viewer</a><br><br>
</div>
</div>
</section>
<section id="contact">
<h3 class="text-primary text-center">CONTACT ME</h3>
<hr>
<div class="row">
<div class="col-md-4 col-md-offset-2 social">
<a href="https://twitter.com/d3xru8" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i> Twitter</a><br><br>
<a href="https://github.com/d3xru8" target="_blank"><i class="fa fa-github" aria-hidden="true"></i> Github</a><br><br>
<a href="https://facebook.com/d3xru8" target="_blank"><i class="fa fa-facebook" aria-hidden="true"></i> Facebook</a><br><br>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p class="text-center text-muted">© 2016 Dexter Rualo. <a href="https://github.com/d3xru8/d3xru8.github.io">Fork</a> this on Github.</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script>
$(document).ready(function() {
$("section").height(screen.availHeight - (window.outerHeight - window.innerHeight)-100);
});
</script>
</body>
</html>