-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage2.html
More file actions
92 lines (92 loc) · 4.35 KB
/
page2.html
File metadata and controls
92 lines (92 loc) · 4.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
p {max-width: 550px;}
body {
background-image: url("");
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: 100% 100%}
</style>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<link rel="stylesheet" href="./assets/css/buttons.css">
<style>
.container {
display: flex;
align-items: center;
}
.text {
text-indent: 5px ;
}
</style>
</head>
<body>
<header>
<h1>PAGE 2</h1>
<a href="index.html" class="animated-button">← Back page</a>
<a href="page3.html" class="animated-button">Next page →</a>
<div>
<div>
<div class="container">
<img width="100" src="./assets/images/avatar.png" alt="image"> <!-- It's not me on the photo -->
<div class="text">
<h1>Oleh mordan</h1>
<p><b>WEB DEVELOPER</b></p>
</div>
</div>
</div>
</div>
</header>
<main>
<section>
<h1>Profile</h1>
<p>Innovative WEB developer with six years of experience in software development, including two years of Web site development. Strong object-oriented design, programming and debugging skills.</p> <!-- ALL the information below is fake ^w^ -->
</section>
<section>
<h1>Employment History</h1>
<article>
<h4>IOS Developer, Blue Print Technologies, Kansas City</h4>
<p style="color: grey; bottom: 15px">From January 2011 to present</p>
<ul>
<li>Serves as a technical lead on projects, assists in solution development and works alongside the development team.</li>
<li>Executes and implements technical projects for 12+ complex iOS applications.</li>
<li>Reviews client requests, layouts, and designs for technical feasibility.</li>
<li>Collaborates with the scrum team, translating customer requests into implementable user stories.</li>
<li>Improves product quality through code reviews, writes effective unit tests, and works collaboratively with QA to perform automated testing.</li>
</ul>
</article>
<article>
<h4>IOS Developer, InContact, Anniston</h4>
<p style="color: grey; bottom: 15px">From January 2018 to December 2020</p>
<ul>
<li>Responsible for the design, development, management, creation and maintenance of technical components and templates in a team of 15 people.</li>
<li>Works collaboratively with designers and product managers to develop rich iOS experiences for users.</li>
<li>Supports the architect in improving the iOS and TV OS source code.</li>
<li>Researches new technologies and shares results with the team.</li>
<li>Maintains and optimizes company procedures, policies, missions and standards of ethics and integrity.</li>
</ul>
</article>
</section>
<section>
<h1>Education</h1>
<article>
<h4>Master of Science in Computer Engineering, CalTech University, Los Angeles</h4>
<p style="color: grey; bottom: 15px">From January 2019 to January 2021</p>
</article>
<article>
<h4>Bachelor of Science in Computer Science, University of Washington, Washington</h4>
<p style="color: grey; bottom: 15px">From January 2017 to September 2019</p>
</article>
</section>
</main>
<aside></aside>
<footer>
<b>Made by Oleh ʕ ᵔᴥᵔ ʔ</b>
</footer>
</body>
</html>