-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (63 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content=
"A simple static portfolio with information about all the Udacity Courses I took!"
name="description">
<meta content="Pedro Miguel P. S. Martins" name="author">
<title>Pedro Martins: Udacity Course Portfolio</title>
<link href="css/style.css" rel="stylesheet">
<link href="css/print.css" media="print" rel="stylesheet">
<link href="css/mobile.css" media="screen and (max-width: 480px)" rel=
"stylesheet">
<script async="" src="js/analytics.js"></script>
<script async="" src="http://www.google-analytics.com/analytics.js"></script>
<script async="" src="js/perfmatters.js"></script>
</head>
<body>
<header>
<a href="https://github.com/Fl4m3Ph03n1x"><img src="img/profilepic.jpg" alt="Pedro's Avatar"></a>
<p>Pedro Martins<br><span>Master Engineer</span></p>
</header>
<div class="container">
<div class="hero">
<strong>I love web development!</strong> This is a simple project created to demonstrate how
fast a mobile application can be, if optimized with every little detail! In this small project I
showcase some of the courses I took on-line. They were all fantastic experiences!<br>
Contact me: [email protected]
</div>
<div class="content">
<ul>
<li>
<img src="img/web_development.jpg" alt="Web Dev. Course Image">
<a href="html/web-development.html">Web Development</a>
<p>Develop your own dynamic blog with the help of Reddit's creator!</p>
</li>
<li>
<img src="img/html5_game_development.jpg" alt="HTML5 Game Dev. Course Image">
<a href="html/html5-game-development.html">HTML5 Game Development</a>
<p>Make an explosive tank game with help from Google's engineers!</p>
</li>
<li>
<img src="img/website_performance_optimization.jpg" alt="Website Performance Course Image">
<a href="html/website-performance.html">Website Performance Optimization</a>
<p>The course that originated this little project! Hope this page loads fast!</p>
</li>
<li>
<img src="img/2048.jpg" alt="2048 Course Image">
<a href="html/2048.html">Build Your Own 2048!</a>
<p>Changing a game through a course for beginners !</p>
</li>
</ul>
</div>
<footer>
<p>© Web Performance 2014 <span id="crp-stats"></span></p>
</footer>
</div>
<style scoped>
@import "//fonts.googleapis.com/css?family=Open+Sans:400,700"
</style>
</body>
</html>