-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·119 lines (109 loc) · 5.16 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
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jsInit.js"></script>
<script src="https://use.fontawesome.com/4192a5300e.js"></script>
<!-- Google analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-92232358-1', 'auto');
ga('send', 'pageview');
</script>
<head lang="en">
<title>Michael Samper</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="assets/favicon.png">
<link rel="stylesheet" href="CSS/animate.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="CSS/main.css" media="screen" />
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Michael Samper</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="assets/resume.pdf">Resume</a></li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron">
<div class="overlay"><h1>Hi there, I'm Michael.<span class="blinking-cursor">|</span>
</h1>
</div>
</div>
<!-- Carousel -->
<div id="background-carousel">
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Wrapper for slides -->
<div id="wrapper" class="carousel-inner">
<div class="item active">
<img src="assets/yosemite.jpg">
</div>
<div class="item">
<img src="assets/headshot.jpg">
</div>
<div class="item">
<img src="assets/HLA.jpg">
</div>
<div class="item">
<img src="assets/GOT.jpg">
</div>
</div>
</div>
</div>
<!-- Second Container -->
<div id="about" class="container-fluid bg-2 text-center">
<h1 class="margin">About me</h1>
<p>I am a fourth year Computer Science student at the University of Florida.
My interests include Web Development, Big Data, Cultural Awareness, <a href="http://www.ufbetas.org" target="_blank">Brotherhood</a>,
and more. This summer I worked as a Software Engineer Intern at <a href="http://www.twitter.com" target="_blank">Twitter</a>.</p>
<p>After graduation, I will be returning to Twitter to begin my career as a Software Engineer on the Product Insights and Experimentation
team.</p>
<p>When I'm not working on code, I spend my time educating others and sharing
my culture. I've worked as an ambassador for <a href="http://hispaniclatinoaffairs.multicultural.ufl.edu/" target="_blank">
Hispanic-Latino Affairs</a> at UF and I've helped put on meaningful programming such
as Spanish/Portuguese Conversation Hour to help educate students and truly make UF
a home away from home for the minority student population.</p>
</div>
<!-- Third Container -->
<div id="projects" class="container-fluid bg-3 text-center">
<h1 class="margin">Projects</h1>
<p>Creating software is what I love to do. These are a few of my favorite creations.</p>
<p><a href="https://github.com/nfrosa/Lucid" target="_blank" class="btn btn-default btn-lg">Lucid</a></p>
<p><a href="https://auto-vehicles.herokuapp.com/" target="_blank" class="btn btn-default btn-lg">Gainesville Autonomous Vehicles</a></p>
<p><a href="https://github.com/3DAudioSpatMusicTracks/HW3" target="_blank" class="btn btn-default btn-lg">Spatialize Music Tracks</a></p>
</div>
<!-- Fourth Container -->
<div id="contact" class="container-fluid bg-4 text-center">
<h1>Contact me</h1>
<p>Feel free to contact me or connect with me on LinkedIn. Let's
create something <i>new</i>.</p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
<a href="https://www.linkedin.com/in/MichaelSamper" target="_blank">
<i class="fa fa-linkedin fa-3x fa-fw" aria-hidden="true"></i></a>
<a href="https://twitter.com/msamper13" target="_blank">
<i class="fa fa-twitter fa-3x fa-fw" aria-hidden="true"></i></a>
<a href="http://github.com/msamper" target="_blank">
<i class="fa fa-github fa-3x" aria-hidden="true"></i></a>
<p>Copyright © michaelsamper.com 2018</p>
</div>
</body>
</html>