-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (99 loc) · 4.61 KB
/
index.html
File metadata and controls
108 lines (99 loc) · 4.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<link rel="stylesheet" href="styles/resumeStyles.css">
<link rel="icon" type="image/png" href="images/resume-favicon.png">
</head>
<body>
<header>
<h1 id="name">Xalli Bell</h1>
<img id="me-img" src="images/xalli.jpg" alt="Image of me">
<p id="email">bell.xalli@student.greenriver.edu</p>
<p id="linkedin">www.linkedin.com/in/bell.xalli</p>
<p id="phone">2062976355</p>
<a id="git" href="https://github.com/bellxalli">github.com/bellxalli</a>
</header>
<!--Summary / Objective-->
<div id="objective">
<h3>Objective</h3>
<p>Seeking a position to improve work ethic and further develop skills.</p>
</div>
<!--Education-->
<div id="education">
<h3 id="ed">Education</h3>
<p id="school"><b>Green River College</b> -- Auburn, WA</p>
<p id="education-length">2021 to Present</p>
<p id="program">Bachelor of Applied Science, expected June 2026</p>
<p id="area">Major: Software Development </p>
<p id="learns">Relevant Coursework:</p>
<ul id="ed-ulist">
<li id="Object-Oriented">Object-Oriented Programming</li>
<li id="full-stack">Full Stack Web Development</li>
<li id="agile">Agile Development Methods</li>
<li id="database">DataBase Fundamentals</li>
<li id="Systems">Systems Programming</li>
<li id="structures">Data Structures</li>
<li id="algorithm">Algorithms</li>
</ul>
</div>
<!--Skills and Certifications-->
<div id="skills">
<h3>Skills and Certifications</h3>
<ul id="sc-ulist">
<li id="lang">Languages: c++, Java, JavaScript, SQL, Python</li>
<li id="web">Web: HTML/CSS</li>
<li id="pp">Agile: Pair Programming</li>
<li id="tools">Tools: Git</li>
<li id="wsi">Certified Water Safety Instructor</li>
<li id="lg">Certified Lifegaurd</li>
</ul>
</div>
<!--Experience-->
<div id="experience">
<h3 id="ex">Experience</h3>
<!--One-->
<div id="ex-one">
<p class="work"><b>Weyerhaeuser King County Aquatic Center</b> -- Federal Way, WA</p>
<p class="job-length">2024 to Present</p>
<p class="title">Lead Lifegaurd and Water Safety Instructor</p>
<ul class="ex-ulist">
<li>Proecting the community in, on, and around water</li>
<li>Serving the community and city through weekly activities and events</li>
<li>Teaches all levels of swim lessons and provides orientation to all new hires</li>
</ul>
</div>
<!--Two-->
<div id="ex-two">
<p class="work"><b>Old Navy</b> -- Federal Way, WA</p>
<p class="job-length">2023 to 2024</p>
<p class="title">Sales Associate</p>
<ul class="ex-ulist">
<li>Served customers and promoted products and loyalty programs to customers</li>
<li>Earned company over one hundred credit card applications increasing loyalty</li>
</ul>
</div>
<!--Three-->
<div id="ex-three">
<p class="work"><b>Hidden Valley Camp</b> -- Granite Falls, WA</p>
<p class="job-length">2021 to 2024</p>
<p class="title">Camp Counselor and Lifegaurd</p>
<ul class="ex-ulist">
<li>Worked with staff members to create a summer schdule</li>
<li>Supervised and maintained camper's safety and wellbeing day and night on and off site</li>
<li>Taught swim lessons and led interactive activities with camper's</li>
</ul>
</div>
</div>
<!--Achievements and Activities-->
<div id="achievements">
<h3>Achievements and Activities</h3>
<ul>
<li>Metropolitan King County Council Recognized, 2024</li>
<li>Green River College Foundation Scholarship, Awardee, 2023</li>
</ul>
</div>
</body>
</html>