-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexperience.html
112 lines (104 loc) · 4.23 KB
/
experience.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Personal Portfolio</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<header class="container">
<div class="row">
<h1 class="col-sm-6">Derek Dhammaloka</h1>
<nav class="col-sm-6 text-right">
<a href="home.html">Home</a>
<a href="about.html">About</a>
<a href="education.html">Education</a>
</nav>
</div>
</header>
<section class="jumbotron">
<div class="container">
<div class="row">
<h2>Graduate Full Stack Developer</h2>
<h3>HTML, CSS, JavaScript, Python</h3>
</div>
</div>
</section>
<section class="jumbotron">
<div class="container">
<div class="row">
<h2>Experience</h2>
</div>
</div>
</section>
<section class="container">
<div class="row">
<div class="col-sm-3">
<h5>Web Design (e.g. jQuery)</h5>
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/jquery.png">
<ul>
<li>7 years experience</li>
</ul>
</div>
<div class="col-sm-3">
<h5>JavaScript</h5>
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/javascript.png">
<ul>
<li>7 years experience</li>
</ul>
</div>
<div class="col-sm-3">
<h5>Python</h5>
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/python.png">
<ul>
<li>7 years experience</li>
</ul>
</div>
<div class="col-sm-3">
<h5>SQL</h5>
<img src="https://s3.amazonaws.com/codecademy-content/projects/make-a-website/lesson-4/mysql.png">
<ul>
<li>7 years experience</li>
</ul>
</div>
</div>
</section>
<section class="container">
<div class="row">
<div class="col-sm-12">
<h2>Professional Projects</h2>
<ul>
<li><a href="https://derektypist.github.io/ucd-band" target="_blank">User Centric Front End Development - UCD Band</a></li>
<li><a href="https://derektypist.github.io/data-dashboard" target="_blank">Interactive Front End Development - Data Dashboard</a></li>
<li><a href="https://derektypist.github.io/wikipedia-viewer" target="_blank">Wikipedia Viewer</a></li>
<li><a href="https://derektypist.github.io/tic-tac-toe" target="_blank">Tic Tac Toe</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<h2>Personal Projects</h2>
<ul>
<li><a href="https://derektypist.github.io/tribute-page" target="_blank">Tribute Page</a></li>
<li><a href="https://derektypist.github.io/derek-dhammaloka-cv" target="_blank">Personal CV</a></li>
<li><a href="https://derektypist.github.io/survey-form" target="_blank">Hotel Survey Form</a></li>
<li><a href="https://derektypist.github.io/product-landing-page" target="_blank">Product Landing Page</a></li>
</ul>
</div>
</div>
</section>
<footer class="container">
<div class="row">
<p class="col-sm-4">© 2023 Derek Dhammaloka</p>
<div class="col-sm-2">
<a href="https://www.linkedin.com/in/derekdhammaloka/" target="_blank">LinkedIn</a>
</div>
<div class="col-sm-2"><a href="https://www.github.com/derektypist" target="_blank">GitHub</a></div>
<div class="col-sm-2"><a href="https://www.credential.net/00077928-d6ee-477d-9c14-7417d32e16f0#gs.acv5h6" target="_blank">View Certificate</a></div>
<div class="col-sm-2"><a href="https://www.pinterest.co.uk/derekthesec/" target="_blank">Pinterest</a></div>
</div>
</footer>
</body>
</html>