-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 3.39 KB
/
index.html
File metadata and controls
73 lines (73 loc) · 3.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<title>Graham Ellacott</title>
<link rel="icon" href="img/favicon.ico">
</head>
<body>
<header>
<img src="img/Logo.png" class="logo" alt="glasses logo">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about-me">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="logo-main">
<img src="img/GrahamEllacott.png" class="logo-name" alt="Graham Ellacott">
<br>
<h4 class="subtitle">Software Developer | Artist | UX Designer</h4>
</div>
<div class="grid-container">
<div class="grid-half bkg-accent" id="about-me">
<div class="box-padding">
<h1>ABOUT ME</h1>
<p>My name is Graham Ellacott, an IT Innovation and Design Student at Conestoga College. I'm a skilled developer with an interest in graphic design, 3D art and Illustration </p>
</div>
</div>
<div class="grid-half bkg-dark">
<img src="img/profile.png" alt="my face" width="100%" height="100%">
</div>
<a href="projects.html" class="grid-full bkg-secondary" id="projects">
<div class="inner-shadow-overlay">
<img src="img/projects.png" alt="some of my projects" width="100%" height="100%">
</div>
<div class="box-padding">
<h1>PROJECTS</h1>
<p>
<strong>Click Here</strong> to see some examples of my academic and hobby projects!
</p>
</div>
</a>
<div class="grid-three-quarters bkg-semi-dark" id="contact">
<div class="box-padding">
<h1>CONTACT</h1>
<p>You can reach me at my email <strong>ellacottg@gmail.com</strong>, <a href="https://www.linkedin.com/in/graham-ellacott/">My LinkedIn</a> or find me on instagram <a href="https://www.instagram.com/grahamusesthisappnow/">@grahamusesthisappnow</a></p>
</div>
</div>
</div>
</main>
<footer>
<div class="footer-top">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about-me">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
<img src="img/Logo.png" class="logo" alt="glasses logo">
</div>
<p>Copyright © Graham Ellacott 2025</p>
</footer>
</body>
</html>