-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
90 lines (87 loc) · 4.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>Rafael Cortês | Home</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="css/main.css" media="all" rel="stylesheet" type="text/css" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-2.0.2.min.js"><\/script>')</script>
<script src="js/main.js"></script>
<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-77731484-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header>
<nav>
<ul>
<li class="active"><a href="#home">Home</a></li>
<li><a href="#about">About me</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#portfolio">Portfolio</a></li>
</ul>
</nav>
</header>
<div id="home" class="content active">
<h1>Welcome to my web page</h1>
<p>Here you can find more about who I am and what I do.</p>
<p>If you want to reach me, just try any of my contacts.</p>
<br />
<ul class="horizontal">
<li><a href="mailto:[email protected]"><img src="images/email.png" alt="email" /></a></li>
<li><a href="skype:mrfyda?chat"><img src="images/skype.png" alt="skype" /></a></li>
<li><a href="http://www.linkedin.com/pub/rafael-cort%C3%AAs/53/1b2/24a"><img src="images/linkedin.png" alt="linkedin" /></a></li>
<li><a href="http://www.twitter.com/mrfyda"><img src="images/twitter.png" alt="twitter" /></a></li>
<li><a href="http://www.github.com/mrfyda"><img src="images/github.png" alt="github" /></a></li>
</ul>
</div>
<div id="about" class="content">
<h1>Who I am</h1>
<p>My name is Rafael Cortês. I live in Lisboa, Portugal.
I'm in the last year of my Degree (BSc) in Information Systems and Computer Engineering at <a href="http://ist.utl.pt">Instituto Superior Técnico</a>.</p>
<br />
<p>When I'm not programming, I like to listen to Indie and Classic Rock, play guitar, riding a bike and hanging out with my friends.
If it's sunny you might also find me geocaching.</p>
</div>
<div id="experience" class="content">
<h2>Programming Skills</h2>
<p>Throughout my degree I've learned C, C++ and Java. Also developed using Scheme, Assembly, Prolog, SQL and Lisp.
For personal and professional projects I've used PHP, HTML(+CSS+JS) and C#.</p>
<br />
<h2>Experience</h2>
<ul>
<li>2012 - Summer internship at <a href="http://www.inov.pt/index_e.php">inov/INESC-ID</a></li>
</ul>
</div>
<div id="portfolio" class="content">
<div class="portfolio-item">
<h2>dsinov.com [2012]</h2>
<br>
<p>A web page to present the research group activity.</p>
<br />
<a href="http://www.dsinov.com">
<img src="images/dsinov.jpg" alt="dsinov.com" />
</a>
</div>
<br />
<div class="portfolio-item">
<h2>QrCodeR [2010]</h2>
<br>
<p>QrCodeR is a minimal and non-obstructive Firefox addon to convert text selections, links and images to QrCode with just a right-click. Rated 5/5.</p>
<br />
<a href="http://addons.mozilla.org/firefox/addon/qrcoder/">
<img src="images/qrcoder.jpg" alt="QrCodeR" />
</a>
</div>
</div>
<footer>
<p>© Copyright 2013 Rafael Cortês. Some rights reserved.</p>
</footer>
</body>
</html>