-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (126 loc) · 4.47 KB
/
index.html
File metadata and controls
139 lines (126 loc) · 4.47 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://use.fontawesome.com/f188fbc3c0.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vanya Yepez | Resume</title>
<link href="https://fonts.googleapis.com/css?family=Cabin|Spinnaker" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header id="about">
<nav class="nav">
<a href="#about">About</a>
<a href="#work">Work Experience</a>
<a href="#education">Education</a>
<a href="#contact">Contact</a>
</nav>
<!-- // Jumbotron -->
<div class="content-wrap">
<img class="profile-img col-narrow" src="images/personalPhoto.png" alt="Personal Photo">
<div class="col-wide">
<h1>Vanya Yepez <br>Xelhuantzi</h1>
<h2>Web Developer, Freelancer, Entrepeneur</h2>
<p>As a Web Developer I focus on creating rich user experiences with sleek graphics
and clean code, as a Freelancer I focus on goal driven development to achieve the
results wanted by the customer on time and as a Entrepeneur I look forward to every
opportunity I can get to learn and grow personally and professionally.</p>
</div>
</div>
<a href="files/Resume.pdf" class="btn download" download>Download <br>Resume in PDF</a>
</header>
<main>
<!-- // Work Experience -->
<section id="work" class="work">
<div class="content-wrap">
<h2>Work Experience</h2>
<!-- Job 1 Details -->
<div class="col-narrow">
<h3>Customer Service Specialist; Mexico City</h3>
<p class="uppercase">TTEC</p>
<p>Nov 2021 – Present</p>
</div>
<div class="col-wide job-description">
<p>Customer Service specialist and Tech Support for phone company. First contact with customers over the phone
to provide solutions. Applied technical and creative skills to solve customer issues related mainly to Tech
Support.</p>
<!-- Skills -->
<ul>
<li>Customer Service</li>
<li>Technical Support</li>
<li>Customer Escalation Management</li>
<li>Soft Sales</li>
</ul>
</div>
<!-- Job 2 Details -->
<div class="col-narrow">
<h3>Freelancer; Mexico City</h3>
<p class="uppercase">Cotton Candy Studios – Owner</p>
<p>2017 – 2021</p>
</div>
<div class="col-wide job-description">
<p>Activities included, Computer Repair and Technical Support. Acquisition of clients. Training on Web Design
and Game Design.</p>
<!-- Skills -->
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Javascript</li>
<li>Unity</li>
<li>C#</li>
<li>Computer Repair</li>
<li>Technical Support</li>
</ul>
</div>
<!-- Job 3 Details -->
<div class="col-narrow">
<h3>Interpreter, Spanish-English; Mexico City</h3>
<p class="uppercase">Language Line Solutions</p>
<p>2016 – 2017</p>
</div>
<div class="col-wide job-description">
<p>Simultaneous Interpretation for customer service. I was in charge of bridging the communication gap between
clients accurately and completely, without omiting or embellishing.</p>
<!-- Skills -->
<ul>
<li>Front-End Web Design</li>
<li>Branding</li>
<li>Computer Repair</li>
<li>Technical Support</li>
</ul>
</div>
</div>
</section>
<!-- // Education -->
<section id="education" class="education">
<div class="content-wrap">
<h2>Education</h2>
<!-- School 1 details -->
<h3>CCPM, 2002 – 2005</h3>
<p>Certified Graphic Designer & Programmer.</p>
<p>Tech in Graphic Design and Programming</p>
<!-- School 2 details -->
<h3>High School, 2004</h3>
<p>High School Diploma, Architecture</p>
</div>
</section>
</main>
<!-- // Footer & contact info -->
<footer>
<div id="contact" class="content-wrap">
<h2>Let's Keep in Touch!</h2>
<!-- Social media and contact links. -->
<div class="contact-info">
<a href="mailto:vanya.yepez@gmail.com"><i class="fa fa-envelope fa-2x" aria-hidden="true"></i><span
class="sr-only">E-mail</span></a>
<a href="https://twitter.com/VanyaYepez" target="_blank"><i class="fa fa-twitter fa-2x"
aria-hidden="true"></i><span class="sr-only">Twitter</span></a>
<a href="https://www.linkedin.com/in/vanyayepez/" target="_blank"><i
class="fa fa-linkedin fa-2x" aria-hidden="true"></i><span class="sr-only">LinkedIn</span></a>
</div>
<p>© 2022 Vanya Yepez Xelhuantzi</p>
</div>
</footer>
</body>
</html>