-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.HTML.html
More file actions
146 lines (144 loc) · 4.53 KB
/
Index.HTML.html
File metadata and controls
146 lines (144 loc) · 4.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Resume Template</title>
</head>
<style>
body {
font-family:Arial, Helvetica, sans-serif,;
line-height: 1.6;
margin: 0;
padding: 0;
color: #333;
background-color:aliceblue;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1,
h2 {
color: #ffa0f7;
}
.header {
text-align: center;
}
.header h1 {
margin: 10px 0;
}
.contact {
margin: 10px 0;
font-size: 14px;
}
.contact a {
color:#aeaefe;
text-decoration: none;
}
.section {
margin: 20px 0;
}
.section h2 {
margin-bottom: 10px;
border-bottom: 2px solid #f8ff92;
padding-bottom: 5px;
}
.item {
margin-bottom: 15px;
}
.item h3 {
margin: 0;
font-size: 18px;
color: #555;
}
.item p {
margin: 5px 0;
font-size: 14px;
}
.skills ul {
list-style: none;
padding: 0;
}
.skills ul li {
display: inline-block;
background: #ff84fb;
color: #fff;
padding: 5px 10px;
margin: 5px 5px 5px 0;
border-radius: 4px;
}
</style>
<body>
<main class="container">
<section class="header">
<h1>Phoenix Berry</h1>
<p class="contact">
LinkedIn:
<a href="#">https://www.linkedin.com/in/phoenix-berry-454028251/</a>
</p>
</section>
<section class="section">
<h2>Summary</h2>
<p>
A fast and excited learner and developer. A unique love for technology, humanities and art.
</p>
</section>
<section class="section">
<h2>Work Experience</h2>
<div class="item">
<h3>Youth Housing Advocate- Ky Youth Advocates</h3>
<p>2024- Current</p>
<p>
Using my personal experince to advocate for housing and rental rights! Writing blogs, Speaking on Panels, and more!
</p>
</div>
<div class="item">
<h3>Generation Housing Justice Fellow - NLIHC</h3>
<p>2025</p>
<p>
Conducting Research and Putting together a project to fight back against the housing crisis!
</p>
</div>
</section>
<div class="section">
<h2>Education</h2>
<div class="item">
<h3>Political Science and Social Welfare - Eastern Ky University</h3>
<p>Currently Attending</p>
</div>
<div class="item">
<h3>Diploma - Ironton High School</h3>
<p>2019</p>
</div>
</section>
<section class="section">
<h2>Skills</h2>
<div class="skills">
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Python</li>
<li>Team Leadership</li>
<li>Leadership</li>
<li>Research </li>
</ul>
</div>
</section>
<section class="section">
<h2>Projects</h2>
<div class="item">
<h3>Coding Resume </h3>
<p>
I successfully coded my first resume! It could be a bit prettier but im learning <3
</p>
</div>
</section>
</main>
</body>
</html>