Encapsulated the 3 necessary files into a folder to ensure organization

This commit is contained in:
Carrington Body 2024-04-12 14:09:36 -05:00
parent 4eaaeb7fbf
commit 9b430d7188
3 changed files with 0 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

View file

@ -0,0 +1,160 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carrington Body Resume</title>
<link rel="stylesheet" href="resume.css" />
</head>
<body>
<main>
<section class="flexImage">
<div>
<img src="./images/IMG-2644.jpg" width="120"
height="120"/>
</div>
<div class="noGap">
<h1 class="headOfMainText">Carrington Body</h1>
<h6 class="subOfMainText">Aspiring Software Engineer</h6>
</div>
</section>
<section>
<div>
<h3>Profile</h3>
</div>
<div>
<p>
Former student data analyst with an entrepreneurial spirit pivoting
to software engineering. Aiming to leverage my analytical skills to build
software tools and services by implementing established programming frameworks.
</p>
</div>
</section>
<section>
<div>
<h3>Education</h3>
</div>
<div>
<h5>Bachelor of Science, Data Science - Xavier University of Louisiana, LA</h5>
</div>
<div>
<h6 class="greyText">August 2019 - May 2023</h6>
</div>
<div>
<p>
Graduated with Honors (3.3 GPA).
</p>
</div>
</section>
<section>
<div>
<h3>Professional Experience</h3>
</div>
<div>
<h5>Account Manager, Inside Sales - TopRx, Memphis, TN</h5>
</div>
<div>
<h6 class="greyText">October 2023 - March 2024</h6>
</div>
<div>
<p>
Managed a CRM of a client base of over 300 independent pharmacies
in the US. Sold over $10k monthly in generics to multiple pharmacies.
</p>
</div>
<div>
<h5>Software Developer (Intern) - Computer Concepts, Lafayette, LA</h5>
</div>
<div>
<h6 class="greyText">June 2023 - September 2023</h6>
</div>
<div>
<p>
Developed supplemental changes to clients' businesses by
building and increasing the functionality of their online presence.
Includes website-building through the Azure stack.
</p>
</div>
</section>
<section>
<div>
<h3>Projects</h3>
</div>
<div class="blueLikeFooter">
<h6>Refer to the Links section</h6>
</div>
<div>
<h5>Data Analytics Portfolio</h5>
</div>
<div>
<p>
Collection of real-world case studies involving the manipulation
of multiple datasets and the utilization of visualization and
analytical tools to predict outcomes and make business decisions.
Built in R Studio.
</p>
</div>
<div>
<h5>Degree Audit</h5>
</div>
<div>
<p>
Managed a viable MVP that outputs remaining class requirements using students'
transcripts and curriculums based on their respective majors. Led as Project
Manager by setting meetings, working with stakeholder to design project guidelines
writing 90% of user stories for associate developers via PivotalTracker, and
managing/merging code via GitHub.
</p>
</div>
</section>
</main>
<footer>
<section>
<div>
<h4>Details</h4>
</div>
<div>
<a>Memphis, TN</a>
<a>901-305-1606</a>
<a>carringtonbody@gmail.com</a>
</div>
</section>
<section>
<div>
<h4>Links</h4>
</div>
<div>
<a class="link" href="https://www.linkedin.com/in/carrington-body">LinkedIn</a>
<a class="link oneLine" href="https://github.com/cbody2/DegreeAudit">Project Manager of a Console-Based App</a>
<a class="link" href="https://github.com/cbody2/R-code-data-analytics">Data Analytics Portfolio</a>
</div>
</section>
<section>
<div>
<h4>Skills</h4>
</div>
<div>
<a>Problem Solving</a>
<a>Mathematical</a>
<a>Management</a>
<a>Customer Service</a>
<a>Learn Quickly</a>
</div>
</section>
<section>
<div>
<h4>Langauges</h4>
</div>
<div>
<a>English</a>
<a>Spanish</a>
</div>
</section>
<section>
<div class="copyright">
<h6> &copy; 2024, Carrington Body</h6>
</div>
</section>
</footer>
</body>
</html>

View file

@ -0,0 +1,96 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
display: flex;
}
main {
padding: 40px;
background-color: beige;
display: flex;
flex-direction: column;
justify-content: space-around;
gap: 20px;
}
section, div {
display: flex;
flex-direction: column;
gap: 3.3px;
}
h3 {
font-size: 1.3em;
}
p {
font-size: 0.8em;
}
.headOfMainText {
font-size: 2.5em;
}
.subOfMainText {
font-size: 0.9em;
text-align: center;
color: mediumblue;
}
.flexImage {
margin: 0 auto;
flex-direction: row;
gap: 20px;
}
.noGap {
gap: 0;
align-items: center;
}
.greyText {
color: grey;
}
.blueLikeFooter {
color: rgba(5, 10, 59, 0.829);
}
footer {
padding-top: 100px;
padding-left: 50px;
padding-right: 50px;
background-color: rgba(5, 10, 59, 0.829);
color: white;
display: flex;
flex-direction: column;
gap: 30px;
}
a {
display: flex;
flex-direction: column;
color: white;
text-decoration: unset;
font-size: 0.8em;
line-height: 18pt;
}
.oneLine {
line-height: 10pt;
}
.link:hover {
text-decoration: underline;
}
.copyright {
font-size: 1em;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
padding-top: 90px;
}