-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (79 loc) · 3.36 KB
/
index.html
File metadata and controls
84 lines (79 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Play&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/930fafc260.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/containers.css">
<link rel="stylesheet" href="./css/styles.css">
<!-- Keep prefetch hints intentionally small; tune based on analytics review. -->
<link rel="prefetch" href="./my_early_years.html" as="document">
<link rel="prefetch" href="./career_change.html" as="document">
<link rel="prefetch" href="./personal_development.html" as="document">
<title>Toby Beevers | Personal Website</title>
<link rel="icon" href="library/favicon-laptop-solid.svg" type="image/svg+xml">
</head>
<body>
<!-- Skip to content link -->
<a href="#main-content" class="skip-link" >Skip to main content</a>
<!-- NavBar Same Every Page -->
<div class="navbar" aria-label="Navigation">
<div class="container flex">
<nav aria-label="Main Navigation">
<ul>
<li><a href="./index.html" aria-current="page">Home</a></li>
<li><a href="./my_early_years.html">My Early Years</a></li>
<li><a href="./career_change.html">Career Change</a></li>
<li><a href="./personal_development.html">Personal Development</a></li>
<li><a href="./my_links.html">My Links</a></li>
<li><a href="./my_blog.html">My Blog Posts</a></li>
</ul>
</nav>
</div>
</div>
<!-- Showcase -->
<main id="main-content">
<section class="showcase2">
<div class="container grid flex">
<div class="showcase-text">
<h1>Toby Beevers</h1>
<h2>Welcome To My Personal Website</h2>
<p>I’m Toby Beevers — a Data & IT Consultant focused on turning messy data and complex systems into clear, usable insights.</p>
<p>On this site you’ll find a snapshot of my career journey, the projects I’ve delivered, and what I’m building next in data, analytics, and AI.</p>
<p><strong>Start here:</strong> download my CV, browse my key projects, or jump to my latest blog posts.</p>
<a href="library/Toby Beevers CV - Dir Tech and Data.pdf" download class="btn btn-outline"> Download My CV</a>
</div>
<div class="showcase-form card">
<img src="library\TobyBeeversHeadShot.jpg" alt="Head shot of Toby Beevers">
</div>
</div>
</section>
</main>
<!--Footer Bar Same Every Page -->
<footer class="footer bg-secondary py-5">
<div class="container grid grid-3">
<div>
<h1>Toby Beevers</h1>
<h2>Copyright © 2024</h2>
</div>
<nav aria-label="Secondary Navigation">
<ul>
<li><a href="./index.html" aria-current="page">Home</a></li>
<li><a href="./my_early_years.html">My Early Years</a></li>
<li><a href="./career_change.html">Career Change</a></li>
</ul>
</nav>
<nav aria-label="Secondary Navigation">
<ul>
<li><a href="./personal_development.html">Personal Development</a></li>
<li><a href="./my_links.html">My Links</a></li>
<li><a href="./my_blog.html">My Blog Posts</a></li>
</ul>
</nav>
</div>
</footer>
</body>
</html>