forked from CodeYourFuture/HTML-CSS-Coursework-Week4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
165 lines (165 loc) · 5.1 KB
/
resume.html
File metadata and controls
165 lines (165 loc) · 5.1 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./css/resume.css" />
</head>
<body>
<header>
<div class="header">
<div class="left">
<p id="box"></p>
<a href="./index.html">
<p style="font-size: 24px">
<b>Maya Nelson</b> / Project Manager
</p></a
>
</div>
<nav class="right">
<ul>
<li><a href="#" style="color: #0150fd">ABOUT ME</a></li>
<li><a href="./resume.html">RESUME</a></li>
<li><a href="./project.html">PROJECTS</a></li>
<li><a href="./contact.html">CONTACT</a></li>
</ul>
</nav>
</div>
</header>
<!-- MAIN -->
<main>
<div id="main-head">
<div id="box"></div>
<h1>Resume</h1>
</div>
<div id="top">
<h2>Experience</h2>
<button>DOWNLOAD CV</button>
</div>
<div class="infos">
<h4>
2035 - Present<br />JOB POSITION<br />Company Name<br />Company
Location
</h4>
<p>
I'm a paragraph. Click here to add your own text and edit me. It’s
easy. Just click “Edit Text” or double click me to add your own
content and make changes to the font.<br />I’m a great place for you
to tell a story and let your users know a little more about you.
</p>
</div>
<br /><br /><br />
<div class="infos">
<h4>
2035 - 2035<br />JOB POSITION<br />Company Name<br />Company Location
</h4>
<p>
I'm a paragraph. Click here to add your own text and edit me. It’s
easy. Just click “Edit Text” or double click me to add your own
content and make changes to the font.<br />I’m a great place for you
to tell a story and let your users know a little more about you.
</p>
</div>
<!-- -->
<div>
<h2 id="edu">Education</h2>
</div>
<div class="infos">
<h4>
2035 - 2035 <br />UNIVERSITY NAME<br />Degree Level<br />University
Location
</h4>
<p>
I'm a paragraph. Click here to add your own text and edit me. It’s
easy. Just click “Edit Text” or double click me to add your own
content and make changes to the font.<br />
I’m a great place for you to tell a story and let your users know a
little more about you.
</p>
</div>
<br /><br /><br />
<div class="infos">
<h4>
2035 - 2035<br />JOB POSITION<br />Company Name<br />Company Location
</h4>
<p>
I'm a paragraph. Click here to add your own text and edit me. It’s
easy. Just click “Edit Text” or double click me to add your own
content and make changes to the font.<br />I’m a great place for you
to tell a story and let your users know a little more about you.
</p>
</div>
<br /><br /><br />
<div id="skills">
<div>
<h2 class="h2-in-divs">Professional skillset</h2>
<ul id="list-of-skills">
<li> <div id="box-small"></div>
Entrepreneurial Mindset</li>
<li> <div id="box-small"></div>
Go-to-Market Planning</li>
<li> <div id="box-small"></div>
Teamwork & Collaboration</li>
<li> <div id="box-small"></div>
Digital Analytics</li>
</ul>
</div>
<!-- -->
<div id="languages">
<h2 class="h2-in-divs">Languages</h2>
<ul id="list-of-skills">
<li>
<div id="box-small"></div>
English (native)
</li>
<li>
<div id="box-small"></div>
Turkish
</li>
<li>
<div id="box-small"></div>
Spanish
</li>
</ul>
</div>
</div>
</main>
<!-- footer -->
<footer>
<p>
© 2035 by Maya Nelson.<br />
Powered and secured by Wix
</p>
<div>
<div>
<p><b>Call</b></p>
<p>123-456-7890</p>
</div>
<div>
<p><b>Write</b></p>
<p><a href="">[email protected]</a></p>
</div>
<div>
<p><b>Follow</b></p>
<ul>
<li>
<a
href="./designs/face-black.png"
style="height: 5px; width: 10px; background-color: black"
></a>
</li>
<li>
<a href="./designs/twitter-black.png" style="height: 5px"></a>
</li>
<li><a href="./designs/in-black.png" style="height: 5px"></a></li>
<li>
<a href="./designs/insta-black.png" style="height: 5px"></a>
</li>
</ul>
</div>
</div>
</footer>
</body>
</html>