-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (60 loc) · 1.99 KB
/
index.html
File metadata and controls
79 lines (60 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Andrew Whatling Technical Portfolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<header>
<a href='index.html'>
<img src="icons/logo.png" alt="Website Logo" class="logo">
</a>
<a href="https://github.com/AndrewWhatling" target="_blank">
<img src="icons/github.svg" alt="Github link" class="github">
</a>
<a href="https://www.linkedin.com/in/andrew-whatling-2704a6259" target="_blank">
<img src="icons/linkedin.svg" alt="Linkedin link" class="linkedin">
</a>
</header>
<body>
<div class="container">
<div class="box box-render" onclick="location.href='projects/renderengine.html'">
<a href='projects/renderengine.html'>
<h2>Current Project:</h2>
<h2>Render Engine</h2>
</a>
</div>
<div class="box box-contact" onclick="location.href='contact.html'">
<a href='contact.html'>
<h3>Contact</h3>
</a>
</div>
<div class="box box-about" onclick="location.href='aboutme.html'">
<a href='aboutme.html'>
<h2>About Me</h2>
</a>
</div>
<div class="box box-projects" onclick="location.href='projects.html'">
<a href='projects.html'>
<h3>All Projects</h3>
</a>
</div>
</div>
</body>
<footer>
<div class="software-logo-container">
<img src="icons/houdini.svg" alt="Houdini Logo" class="software-logo">
<img src="icons/maya.svg" alt="Maya Logo" class="software-logo">
<img src="icons/nuke.svg" alt="Nuke Logo" class="software-logo">
</div>
<p>
Contact available at: Andrew-whatling-vfx@hotmail.com
</p>
<div class="software-logo-container">
<img src="icons/python.svg" alt="Python Logo" class="software-logo">
<img src="icons/cpp3.svg" alt="C++ Logo Logo" class="software-logo">
<img src="icons/unreal-engine.svg" alt="Unreal-Engine Logo" class="software-logo">
</div>
</footer>
</html>