Created
October 6, 2021 19:49
-
-
Save midorikocak/dcd4c8972850e4f2876bd2e7169d2c1b to your computer and use it in GitHub Desktop.
Structured Data example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Midori Kocak</title> | |
<meta charset="utf-8" /> | |
<link rel="stylesheet" href="/css/stylesheet.css" /> | |
<style> | |
.resume-name { | |
color: #ffff00; | |
} | |
.resume-article { | |
display: flex; | |
flex-direction: column; | |
} | |
</style> | |
</head> | |
<body> | |
<article | |
class="resume-article" | |
itemscope | |
itemtype="https://schema.org/Person" | |
> | |
<header> | |
<address | |
itemprop="address" | |
itemscope | |
itemtype="https://schema.org/PostalAddress" | |
> | |
<span itemprop="streetAddress">U Nikolajky 25,</span> | |
<span itemprop="addressLocality">Prague 5</span>, | |
<span itemprop="postalCode">1500 00</span> | |
<span itemprop="addressCountry">Czech Republic</span> | |
</address> | |
<h1 class="resume-name" style="color: purple" itemprop="name"> | |
Midori Kocak | |
</h1> | |
<ul> | |
<li> | |
<a itemprop="telephone" href="tel:+420774579503">+420774579503</a> | |
</li> | |
<li> | |
<a itemprop="email" href="mailto:[email protected]" | |
>[email protected]</a | |
> | |
</li> | |
</ul> | |
</header> | |
<section> | |
<h2>Employment</h2> | |
<ol> | |
<li | |
itemscope | |
itemprop="worksFor" | |
itemtype="https://schema.org/Organization" | |
> | |
<span class="company-name" itemprop="name">McKinsey & Company</span> | |
<span class="job-title" itemprop="jobTitle" | |
>Senior Software Engineer</span | |
> | |
<span class="between-dates">March 2018 - June 2019</span> | |
<ul class="responsibilities"> | |
<li> | |
Development of Worldwide design system for web apps using | |
Reusable Components with React and Javascript | |
</li> | |
<li> | |
Development of User Interfaces in several web applications | |
</li> | |
</ul> | |
</li> | |
<li> | |
Massive Interactive Frontend Engineer April 2015 - August 2016 | |
<ul> | |
<li> | |
Development of User Interfaces of the video on demand | |
application | |
</li> | |
<li> | |
Native component development of Video on Demand Application | |
using Objective-C for IOS and Java for Android | |
</li> | |
</ul> | |
</li> | |
</ol> | |
</section> | |
<section> | |
<h2>Education</h2> | |
<ol> | |
<li> | |
Academy of Arts, Architecture and Design in Prague Masters of Art in | |
Graphic Design October 2019 - June 2022 | |
<ul> | |
<li>Took classes in architecure, design and art</li> | |
<li>Created a designer's portfolio</li> | |
</ul> | |
</li> | |
<li> | |
Sabanci University BSc. of Computer Science and Engineering | |
September 2006 - November 2010 | |
<ul> | |
<li>Specific projects using Internet of Things</li> | |
<li>Visual Computing using Laser Scanners</li> | |
</ul> | |
</li> | |
</ol> | |
</section> | |
<section> | |
<h2>Technical Experience</h2> | |
<h3>Projects</h3> | |
<ul> | |
<li>Lorem: Ipsum dolor sit amet, consectetur adipisicing elit</li> | |
</ul> | |
</section> | |
<section> | |
<h2>Additional Experience and Awards</h2> | |
<ul> | |
<li>Lorem: Ipsum dolor sit amet, consectetur adipisicing elit</li> | |
</ul> | |
</section> | |
<section> | |
<h2>Languages and Technologies</h2> | |
<ul> | |
<li>Lorem: Ipsum dolor sit amet, consectetur adipisicing elit</li> | |
</ul> | |
</section> | |
</article> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment