Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
3042c1d
Change title index.html
RoryEvers Apr 6, 2021
1f49d2d
Add sections and responsive classes to CSS file
RoryEvers Apr 7, 2021
3a10c53
Merge pull request #1 from RoryEvers/section
RoryEvers Apr 7, 2021
086e7e0
doc update
RoryEvers Apr 7, 2021
de4279a
Merge pull request #2 from RoryEvers/document
RoryEvers Apr 7, 2021
1ef8651
add and style profile section
RoryEvers Apr 7, 2021
ffff95a
Merge pull request #3 from RoryEvers/profile
RoryEvers Apr 7, 2021
fa7e3fd
Add project section and style it
RoryEvers Apr 7, 2021
c76877b
Merge pull request #4 from RoryEvers/project
RoryEvers Apr 7, 2021
ffb6545
Add Navigation and body design Home HTML + CSS
RoryEvers Apr 13, 2021
33aeca8
Simplify navigation and add text to home
RoryEvers Apr 14, 2021
3726c83
Merge pull request #5 from RoryEvers/Home
RoryEvers Apr 14, 2021
fafe895
Add line breaks between home text and give home links coloured borders
RoryEvers Apr 14, 2021
2bd1dec
Merge pull request #6 from RoryEvers/Home
RoryEvers Apr 14, 2021
e4b2eeb
Add hamburger menu and styling to navigation
RoryEvers Apr 14, 2021
0e39f85
Merge pull request #7 from RoryEvers/Navigation
RoryEvers Apr 14, 2021
5369084
Set position for navigation, header and footer
RoryEvers Apr 14, 2021
996b6bd
Merge pull request #8 from RoryEvers/Navigation
RoryEvers Apr 14, 2021
2be175c
Create About page and add resume cards
RoryEvers Apr 15, 2021
a9c6f59
Merge pull request #9 from RoryEvers/About
RoryEvers Apr 15, 2021
221ae20
Edit CSS for About
RoryEvers Apr 15, 2021
9a69450
Merge pull request #10 from RoryEvers/About
RoryEvers Apr 15, 2021
f05aad7
Add semantic HTML for Home
RoryEvers Apr 15, 2021
795d2b1
Merge branch 'main' into Home
RoryEvers Apr 15, 2021
ba46da9
Merge pull request #11 from RoryEvers/Home
RoryEvers Apr 15, 2021
e5c7b13
Add semantic HTML index.html, change background colour, add CSS comments
RoryEvers Apr 15, 2021
f34bdcd
Merge pull request #12 from RoryEvers/Home
RoryEvers Apr 15, 2021
bceb501
Add sub heading, text and styling to About
RoryEvers Apr 15, 2021
6f6cde1
Merge pull request #13 from RoryEvers/About
RoryEvers Apr 15, 2021
84cc2b7
Add hobby section to About
RoryEvers Apr 15, 2021
2e5bb9d
Add new html pages for the rest of site
RoryEvers Apr 15, 2021
dfecc07
Merge pull request #14 from RoryEvers/newpages
RoryEvers Apr 15, 2021
0a1b1ed
populate projects page and update CSS
RoryEvers Apr 16, 2021
b3251cf
Merge pull request #15 from RoryEvers/projects
RoryEvers Apr 16, 2021
95c5939
Populate and style projects page
RoryEvers Apr 16, 2021
f23684a
Merge pull request #16 from RoryEvers/projects
RoryEvers Apr 16, 2021
f95812f
Add content and restyle Projects
RoryEvers Apr 16, 2021
f62e3be
Merge pull request #17 from RoryEvers/projects
RoryEvers Apr 16, 2021
ec6ff09
Add hyperlinks to home
RoryEvers Apr 16, 2021
d262f85
Merge pull request #18 from RoryEvers/homelinks
RoryEvers Apr 16, 2021
054fc24
Create contact page and add links and style
RoryEvers Apr 16, 2021
4e85200
Merge pull request #19 from RoryEvers/Contact
RoryEvers Apr 16, 2021
7333ec0
Add content and style to About
RoryEvers Apr 17, 2021
f586b88
Edit content About page 1st para
RoryEvers Apr 17, 2021
702c8e9
Add content to About cards and style page
RoryEvers Apr 17, 2021
336e5e9
Merge pull request #20 from RoryEvers/aboutcontent
RoryEvers Apr 17, 2021
11d9acb
Edit paragraphs and formatting About upper section
RoryEvers Apr 17, 2021
561167a
Add content and style to first paragraph and quote for About
RoryEvers Apr 18, 2021
90015b2
Merge pull request #21 from RoryEvers/aboutcontent
RoryEvers Apr 18, 2021
7fb0633
Add content to resume cards on About
RoryEvers Apr 18, 2021
d46a53b
edit content resume cards
RoryEvers Apr 18, 2021
0d24178
Merge pull request #22 from RoryEvers/aboutcontent
RoryEvers Apr 18, 2021
3a91f31
Replace green with hex code
RoryEvers Apr 18, 2021
7a76a68
Merge pull request #23 from RoryEvers/greencss
RoryEvers Apr 18, 2021
6ea7711
Add content to blog pages and style
RoryEvers Apr 18, 2021
11575de
Merge pull request #24 from RoryEvers/blogpages
RoryEvers Apr 18, 2021
0bc04e2
Add colours to project card borders
RoryEvers Apr 18, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# portfolio-site
# portfolio-site


# testing git branch document
222 changes: 222 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,222 @@
<!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">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>About Me</title>
</head>
<body>


<header>
<nav>
<div class="dropdown">
<button class="dropbtn">&#9776;</button>
<div class="dropdown-content">
<a href="./index.html">Home</a>
<a href="./about.html">About</a>
<a href="./projects.html">Projects</a>
<a href="./contact.html">Contact</a>
</div>
</div>
</nav>
</header>
<main class="about-page">
<section class="about-top">
<h1 class="about-heading">How I can help you</h1>
<article class="about-text">
<span class="quote">Learning to code will better enable me to help your team build valuable tools and products.</span>
<p class = about-text-p1>My past experiences outside of coding demonstrate the value I can add in many areas:</p>
<ul class="skillslist">
<li>Accounting and Banking Industry - 5 years</li>
<li>Co-Management of a Renovations Business - 5 years</li>
<li>Bachelor of Science/Bachelor of Arts - Neuroscience and Psychology</li>
<li>Film and Media Industry - 2.5 years</li>
<li>E-Commerce Freelancing - 2 years</li>

</ul>
<p class="about-text-p2"></p>Throughout this site these have been divided into three streams: <span class="coding-span">Coding and Technology</span>, <span class="bus-span">Business</span>, and <span class="arts-span">Arts and Humanities</span>. I believe each area is important, and my ability to apply lessons from these contrasting experiences will be an asset across every project you are considering.</p>


</article>
</section>
<h2 class="resume-heading">Education & Experience</h2>
<section class="about-info">

<!-- Single card -->
<article class="card">
<p class="res-h">Coder Academy</p>
<p class="res-date">2021</p>
<p class="res1">Diploma of Information Technology</p>
<p class="res2">HTML, CSS, Ruby, Rails, Git, JavaScript, APIs, React.</p>
<p class="res3">1 Month Internship. Networking with current and former students. Practical focus to become hireable immediately. </p>
<p class="res4">Design, Collaboration, Communication, Purpose.</p>

</article>
<!-- End of Single card -->
<!-- Single card -->
<article class="card">
<p class="res-h">E-Commerce Freelancing</p>
<p class="res-date">2019 - Present</p>
<p class="res1">Broad skill set.</p>
<p class="res2">Wordpress, Shopify, Hosting, SEO, Pricing Software, Amazon API, Product Catalogues.</p>
<p class="res3">Pitching to clients, Planning website build schedules, Advertising, Accounting, Copywriting, Social media. </p>
<p class="res4">Website design, Understanding customer needs, Tea Shop, Book Shop, Yoga Accessories.</p>

</article>
<!-- End of Single card -->
<!-- Single card -->
<article class="card">
<p class="res-h">Regional Australia Bank</p>
<p class="res-date">2017-2019</p>
<p class="res1">Operations Support, Credit Control.</p>
<p class="res2">Unix, PnR, General office hardware and software. Other staff members and customers required my department for more advanced applications within bank software.</p>
<p class="res3">Understanding the needs of a bank, Corporate workplace, Negotiating with clients.</p>
<p class="res4">Empathy and compassion when negotiating and clear communication with stakeholders at all levels.</p>

</article>
<!-- End of Single card -->
<!-- Single card -->
<article class="card">
<p class="res-h">University of New England</p>
<p class="res-date">2016-2020</p>
<p class="res1">Bachelor of Science/ Bachelor of Arts</p>
<p class="res2">R, Mathematics, Statistics, Logical thinking Philosophy electives. </p>
<p class="res3">Involved in testing of application using EEG designed for training cricket players.</p>
<p class="res4">Psychology, Philosophy, Academic Writing </p>

</article>
<!-- End of Single card -->
<!-- Single card -->
<article class="card">
<p class="res-h">Beach Bathrooms</p>
<p class="res-date">2011-2016</p>
<p class="res1">Co-manager of Family Business.</p>
<p class="res2">CAD, MYOB, tools with digital features, website</p>
<p class="res3">Leading small teams, Scheduling, Negotiations, Advertising, Council Regulations, Staffing, Invoicing, </p>
<p class="res4">Relationship management - family and customers, Selling an idea, Classical Design Principles regarding Simplicity and Proportion.</p>

</article>
<!-- End of Single card -->
<!-- Single card -->
<article class="card">
<p class="res-h">Film Industry (Various)</p>
<p class="res-date">2013-2015</p>
<p class="res1">Diploma of Information Technology</p>
<p class="res2">Final Cut Pro</p>
<p class="res3">Producing and organising small and large teams. Commercial work with ABC Television, Saatchi and Saatchi, and National Geographic Channel.</p>
<p class="res4">Structure, Balance, Purpose, The mind of the audience, Authenticity, Writing, Visuals, Audio, and Editing. </p>

</article>
<!-- End of Single card -->
<!-- Single card -->
<article class="card">
<p class="res-h">Metro Screen</p>
<p class="res-date">2013</p>
<p class="res1">Certificate IV - Screen & Media</p>
<p class="res2">Final Cut Pro, Canon 5D, Data Wrangling</p>
<p class="res3">Intensive course on all aspects of filmmaking including: Organising small teams, financing etc.</p>
<p class="res4">Screenwriting, producing, directing, editing, sound, cinematography</p>

</article>
<!-- End of Single card -->
<!-- Single card -->
<article class="card">
<p class="res-h">Ernst & Young</p>
<p class="res-date">2010 - 2011</p>
<p class="res1">2 Year Cadetship</p>
<p class="res2">GamX, Advanced applications of Excel.</p>
<p class="res3">Solving challenging analytical and financial problems to strict deadlines. Understanding client company operations. Communicating with key stakeholders including Chief Financial Officers. Companies such as Xstrata and Whitehaven Coal.</p>
<p class="res4">Meticulous attention to detail to ensure accuracy of annual reports. Writing the humour section for the newsletter</p>

</article>
<!-- End of Single card -->


</section>
<section class="forme">
<h1 class="forme-h">How you can help me</h1>




<h2 class="resume-heading">Hobbies & Interests</h2>
<section class="hobby-area">
<img class="hobby" src="./img/Vipassana.jpg">
<img class="hobby" src="./img/Daft-Punk.jpg">


</section>

</section>

</main>










<footer>

</footer>
</body>


</html>









<!-- <section id="profile">
<h1 class="title">Rory Evers</h1>
<div class="row container">
<div class="col-4 col-s-12">
<img src="img/profile.jpg" alt="profile-pic">
</div>
<div class="col-8 col-s-12">
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Nemo beatae dolores eveniet, ducimus exercitationem velit dolore eius quis incidunt aut minima, porro consequatur fugit, similique ratione tempore distinctio! Animi, earum. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Culpa possimus ducimus tempora odio veniam delectus, totam consequuntur tempore, itaque explicabo a dolorum accusantium ullam placeat reprehenderit, quo reiciendis porro necessitatibus!</p>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Id ipsa vel deleniti sit? Magni facilis excepturi molestias rerum aliquid. Alias facere voluptas officiis sint veniam dolorum veritatis cupiditate autem iste.</p>
</div>
</div>
</section>
<section id="projects">
<h1 class="title">PROJECTS</h1>
<div class="row container">
<div class="col-4 col-s-12">
<div class="project">
<img src="img/iot.jpeg" alt="iot">
<h2>Internet Of Things</h2>
<a href="/">Show More</a>
</div>
</div>
<div class="col-4 col-s-12">
<div class="project">
<img src="img/vehicle_diagnostics.jpeg" alt="iot">
<h2>vehicle diagnostics</h2>
<a href="/">Show More</a>
</div>
</div>
<div class="col-4 col-s-12">
<div class="project">
<img src="img/web-development.jpeg" alt="iot">
<h2>Web development</h2>
<a href="/">Show More</a>
</div>
</div>
</div>
</section>
<section id="skills"></section>


Empty file added blog.html
Empty file.
63 changes: 63 additions & 0 deletions blog1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!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">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Blog 1</title>
</head>
<body>


<header>
<nav>
<div class="dropdown">
<button class="dropbtn">&#9776;</button>
<div class="dropdown-content">
<a href="./index.html">Home</a>
<a href="./about.html">About</a>
<a href="./projects.html">Projects</a>
<a href="./contact.html">Contact</a>
</div>
</div>
</nav>
</header>
<main class="blog-page">
<section class="blog-top">
<h1 class="blog-heading">Blog 1</h1>
<h2 class="date-pub">Published 16 April 2021</h2>
<img class="blog-img" alt="A screenshot of this website" src="img/Vipassana.jpg">A relevant photo.</img>
<article class="blog-text">

Lorem ipsum dolor sit amet consectetur adipisicing elit. Eos optio consequuntur fuga minima fugiat voluptates praesentium dolores aperiam, sit dolore? Pariatur quos harum quam voluptates perferendis recusandae, in ad necessitatibus? Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt, totam nobis. Impedit illum debitis nesciunt ex aliquam! Nulla, eum culpa qui, quas reiciendis, dicta officiis nemo recusandae officia sunt odit?</article>
</section>











</main>










<footer>

</footer>
</body>


</html>
63 changes: 63 additions & 0 deletions blog2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!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">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Blog 2</title>
</head>
<body>


<header>
<nav>
<div class="dropdown">
<button class="dropbtn">&#9776;</button>
<div class="dropdown-content">
<a href="./index.html">Home</a>
<a href="./about.html">About</a>
<a href="./projects.html">Projects</a>
<a href="./contact.html">Contact</a>
</div>
</div>
</nav>
</header>
<main class="blog-page">
<section class="blog-top">
<h1 class="blog-heading">Blog 2</h1>
<h2 class="date-pub">Published 16 April 2021</h2>
<img class="blog-img" alt="A screenshot of this website" src="img/Vipassana.jpg">A relevant photo.</img>
<article class="blog-text">

Lorem ipsum dolor sit amet consectetur adipisicing elit. Eos optio consequuntur fuga minima fugiat voluptates praesentium dolores aperiam, sit dolore? Pariatur quos harum quam voluptates perferendis recusandae, in ad necessitatibus? Lorem ipsum dolor sit amet consectetur adipisicing elit. Deserunt, totam nobis. Impedit illum debitis nesciunt ex aliquam! Nulla, eum culpa qui, quas reiciendis, dicta officiis nemo recusandae officia sunt odit?</article>
</section>











</main>










<footer>

</footer>
</body>


</html>
Loading