Portfolio/index.html

66 lines
2.6 KiB
HTML
Raw Permalink Normal View History

<!doctype html>
<HTML lang="en-GB">
2021-01-07 10:35:57 +00:00
<header>
2021-09-17 23:22:11 +01:00
<link rel = "stylesheet" href = "pages\basic.css">
2021-01-07 10:35:57 +00:00
<link rel = "stylesheet" href = "pages\mainpage.css">
<link rel = "stylesheet" href = "pages\effects.css">
2023-01-07 14:21:27 +00:00
<link rel = "stylesheet" href = "pages/variables.css">
<link rel = "icon" href = "images\Icon.ico">
2021-01-07 10:35:57 +00:00
<link rel="preload" href="fonts/Roboto/RobotoMono-VariableFont_wght.ttf" as="font" type="font/ttf" crossorigin> <!--we preload the font to stop a flash of unstyled text-->
2021-01-07 10:35:57 +00:00
<meta charset="UTF-8">
2021-06-18 16:44:06 +01:00
<script src = "scripts\autoScroll.js" type = "module"></script>
2022-04-12 00:34:46 +01:00
<title>Rosia Evans Portfolio</title>
2021-01-07 10:35:57 +00:00
</header>
<body>
2021-09-17 23:22:11 +01:00
<h1 id = "Title">
2023-01-07 14:21:27 +00:00
Rosia Evans
<div class = "subTitle">Portfolio</div>
2021-01-07 10:35:57 +00:00
</h1>
<div class = "textBox">
2022-09-28 17:08:50 +01:00
An aspiring developer who specialises in C++, C# and Typescript with an interest in lower level hardware and XR;
Most of my work is software based, making tools and messing around with VR software.
2021-01-15 21:20:36 +00:00
2021-01-07 10:35:57 +00:00
</div>
2023-01-07 14:21:27 +00:00
<div id = "mainContent">
<div id = "profileImageContainer" class = "orangeBorder">
2023-02-01 21:02:04 +00:00
<img src = "images/Profile7.png" alt = "An image of Rosia Evans, Me" class = "profileImage">
2023-01-07 14:21:27 +00:00
</div>
2023-01-07 14:21:27 +00:00
<div id = "sideText" class = "textBox">
<div>
Most of my experience relates to personal projects, however I have previously worked at <a href = "https://www.skipton.co.uk/">Skipton Building Society</a>, working in a small team
to experiment with automating their testing. I also often teach Python and HTML, having taught many students at my school's coding club for
over 6 years and having tutored GCSE students. You can see my full CV <a href = "files/RosiaEvansCV.pdf" target="_blank">here</a>.
</div>
2023-01-07 14:21:27 +00:00
<div id = "galleryButton" class = "textBox">
<a href = "pages/AllProjects.html" style = "text-decoration: none;">
--> See my work here <--
</a>
</div>
2021-09-16 15:03:14 +01:00
</div>
2023-01-07 14:21:27 +00:00
</div>
2021-01-07 10:35:57 +00:00
<div id = "socialBar">
2022-12-23 19:43:28 +00:00
<a rel="me" href="https://fosstodon.org/@Wi__Ro" target="_blank">Mastodon</a>
&NonBreakingSpace;
2021-04-21 23:31:43 +01:00
<a href = "https://twitter.com/Wi__Ro" target="_blank">Twitter</a>
2021-01-07 10:35:57 +00:00
&NonBreakingSpace;
2021-01-15 21:20:36 +00:00
<a href="mailto:WillowRo@outlook.com" target="_blank">Email</a>
2021-01-07 10:35:57 +00:00
&NonBreakingSpace;
<a href="https://github.com/Wil-Ro" target="_blank">Github</a>
&NonBreakingSpace;
<a href = "./files/RosiaEvansCV.pdf" target="_blank">CV</a>
2021-01-07 10:35:57 +00:00
</div>
</body>
2022-04-12 00:34:46 +01:00
</HTML>