-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
156 lines (134 loc) · 4.32 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
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html>
<head>
<title>Samuel Hwang</title>
<link rel="icon" href="images/SH.png">
<link href="https://samhwangg.github.io/css/bootstrap.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Playfair+Display|Raleway" rel="stylesheet">
<style>
body, html {
height: 100%;
margin: 0;
}
.maxWidth {
margin: 0 auto;
max-width: 50em;
}
.bg {
/* The image used */
background-image: linear-gradient(-20deg,#5569A8 0,#B0D0E9 100%);
/* Full height */
height: 100%;
max-width: 100%;
/* Center and scale the image nicely */
background-position: left;
background-size: cover;
}
.titlebox {
position: relative;
}
.titlebox .inner_box{
position:absolute;
background:rgba(255,255,255,0.6);
top:10%;
left:50%;
transform:translate(-50%,10%);
padding:10px;
text-align:center;
}
.titlebox .inner_box h1{
font-family: 'Playfair Display', serif;
font-size: 65px;
margin-top: 0px;
color:#000;
}
.titlebox .inner_box h3{
font-family: 'Raleway', sans-serif;
margin-top: 0px;
color:#000;
}
h2{
color: rgba(255,250,250,1);
}
p{
color: rgba(255,250,250,1);
}
figcaption{
color: rgba(255,250,250,1);
}
blockquote{
color: rgba(255,250,250,1);
}
cite{
color: rgba(255,250,250,1);
}
.infolist {
width: 60px;
height: 60px:
margin: 0px;
}
.lead{
font-size: 140%;
}
</style>
<body class="bg">
<div class="titlebox">
<div class="inner_box">
<!--Look Into background-blend-mode-->
<h1>Samuel Hwang</h1>
<h3>Software Engineer</h3>
</div>
</div>
<br/ >
<br/ >
<br/ >
<br/ >
<br/ >
<br/ >
<br/ >
<br/ >
<div class="container maxWidth">
<h2 class="text-center">Hello there!</h2>
<p class="lead">
My name is Samuel Hwang. I am currently a Software Developer at IBM and a graduate of UC Riverside.
I am interested in the software development stack as a whole from the birth of an idea to the shipment of a product.
Some of my interests include Software Consulting, Project Management, Embedded Programming, Systems Engineering, IoT, Automation, and Machine Learning.
My hobbies include traveling, cooking, exercising, and listening to podcasts.
</br>
</p>
<h2 class="text-center">What am I up to right now?</h2>
<p class="lead">
I am currently working with IBM's DFSMS Support Team. I remedy clients' problems with their IBM Mainframe.
</br>
</p>
<h2 class="text-center">Get to know me!</h2>
</div>
<div class="container text-center">
<ul class="list-inline">
<li><a href="mailto:[email protected]" target="_top"><img src="images/email2.png" alt="Email" class="infolist" data-toggle="popover" data-content="Send me an email!"/></a></li>
<li><a href="Hwang_Samuel_Resume.pdf"><img src="images/resume2.png" alt="Resume" class="infolist" data-toggle="popover" data-content="Take a look at my résumé!"/></a></li>
<li><a href="https://github.com/samhwangg"><img src="images/github2.png" alt="GitHub" class="infolist" data-toggle="popover" data-content="Check out my GitHub!"/></a></li>
<li><a href="https://www.linkedin.com/in/samuelhwang726/"><img src="images/linkedin2.png" alt="LinkedIn" class="infolist" data-toggle="popover" data-content="Connect with me on LinkedIn!"/></a></li>
</ul>
</div>
<div class="clearfix"></div>
<!--
<blockquote class="text-center">
Stay hungry. Stay foolish.
<footer>
<cite class="text-center">Steve Jobs</cite>
</footer>
</blockquote>
-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('[data-toggle="popover"]').popover({
placement : 'bottom',
trigger : 'hover'
});
});
</script>
</body>
</html>