This repository has been archived by the owner on Aug 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·117 lines (102 loc) · 4.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name='author' content='Joey Cristina'>
<link href="https://fonts.googleapis.com/css?family=Montserrat:300|Unica+One&display=swap" rel="stylesheet">
<link rel='stylesheet' href='css/style.css'>
</head>
<body>
<main>
<!-- *********************** ABOUT / PROFILE *********************** -->
<header>
<div class='content-wrap'>
<h1>Joey Cristina</h1>
<h2>Web Developer [Student]</h2>
<p>Am I job ready? Nope!</p>
<p>Am I working on it? Yep!</p>
</div>
</header>
<!-- ******************** PROJECTS / PORTFOLIO ********************* -->
<!-- <section class='projects'>
<div class='content-wrap divider'>
<h2>Featured Projects</h2>
<p>View selected projects below. More information can be found at <a
href="http://christinatruong.com">christinatruong.com</a>.</p>
<section class='project-item'>
<img src="img/thumbnail-1.jpg" alt="description of image">
<h3>Project Name</h3>
<p>Summary or description of the project and/or your role in it. Add as many paragraphs as you need.</p>
<a class='btn' href="#" target="_blank">View project / case study</a>
</section>
<section class='project-item'>
<img src="img/thumbnail-2.jpg" alt="description of image">
<h3>Project Name</h3>
<p>Summary or description of the project and/or your role in it. Add as many paragraphs as you need.</p>
<a class='btn' href="#" target="_blank">View project / case study</a>
</section>
<section class='project-item'>
<img src="img/thumbnail-3.jpg" alt="description of image">
<h3>Project Name</h3>
<p>Summary or description of the project and/or your role in it. Add as many paragraphs as you need.</p>
<a class='btn' href="#" target="_blank">View project / case study</a>
</section>
</div>
</section> -->
<!-- *********************** WORK EXPERIENCE *********************** -->
<section class='work-exp'>
<div class='content-wrap item-details divider'>
<h2>Work Experience</h2>
<p>This section is under construction.</p>
<!-- Copy this whole <section> block to add more jobs. -->
<section class='job-item'>
<div class='job-details'>
<h3>Event Production</h3>
<p><a href='https://www.nwcreper.com' target='_blank'>NWCreper</a></p>
<p>Founder</p>
<p>May 2013 - Present</p>
</div>
<div class='job-summary'>
<p>Organizing, Booking, Running, and Promoting Live Entertainment.</p>
<p>Retired Promoter Aliases:</p>
<ul>
<li>CapCity Presents</li>
<li>Fringe Music Presents</li>
<li>Our City Shows</li>
<li>Ransom Events</li>
</ul>
</div>
</section>
</div>
<!-- End of Job block. -->
</section>
<!-- ****************** EDUCATION & CERTIFICATIONS ****************** -->
<section class='edu'>
<div class='content-wrap item-details'>
<h2>Education</h2>
<!-- Copy this whole <section> block to add more schools. -->
<section>
<h3>Seattle University - Seattle, WA</h3>
<p>Web Development, 2019-2020</p>
<p>Certificate (in progress).</p>
</section>
</div>
<!-- End of School block. -->
</section>
<!-- ***************** CONTACT INFO / SOCIAL MEDIA ***************** -->
<footer>
<div class="content-wrap">
<h2>Let's Keep in Touch!</h2>
<!-- Social media and contact links. Add or remove any networks. -->
<ul class='contact-list'>
<li><a href="mailto:hi@bashjoey.com">hi@bashjoey.com</a></li>
<li><a href="https://www.twitter.com/bashjoey" target="_blank">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/bashjoey" target="_blank">LinkedIn</a></li>
<li><a href="https://www.instagram.com/bashjoey" target="_blank">Instagram</a></li>
</ul>
</div>
</footer>
</main>
</body>
</html>