-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
66 lines (58 loc) · 2.13 KB
/
Copy pathexperience.html
File metadata and controls
66 lines (58 loc) · 2.13 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Rose Cortijo's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
</head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name"><a href="index.html">Rose Cortijo</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
</ul>
</div>
<header>
<img src="images/new_profile_picture.jpg" alt="Self portrait of Rose" class="profile-image">
<h1 class="tag name">Hello, I’m Rose.</h1>
<p class="tag location">My home is Lima, Peru.</p>
</header>
<main class="flex">
<div class="card">
<h2>Experience</h2>
<p>I have experience in:</p>
<ul class="experience">
<li>ELT/ESP</li>
<li>Game Design</li>
<li>Inclusive Education</li>
<li>Curriculum Design</li>
<li>Phonology</li>
</ul>
</div>
<div class="card">
<h2>Projects</h2>
<p>These are some of the projects I've been working on:</p>
<ul class="projects">
<li>Kaypi</li>
<li>Huemans</li>
<li>Minqa</li>
<li>QodePi</li>
<li>Qode</li>
</ul>
</div>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/rosecoolbeans" target="_blank" class="social twitter">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/rosecoolbeans/" target="_blank"
class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/rosecoolbeans" target="_blank" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright © 2019 Rose Cortijo.</p>
</footer>
</body>
</html>