-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
69 lines (53 loc) · 1.81 KB
/
contact.html
File metadata and controls
69 lines (53 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>About Me</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 about-container">
<div class="about-text box">
<h2>Get in touch!</h2>
<p>
<br>
Have any questions? Get in touch!<br><br>
I'm more than happy being contacted through either my work email: Andrew-whatling-vfx@hotmail.com,
or through my linkedin profile up in the top right!<br><br>
I aim to respond within 2 working days.
<br><br>
</p>
</div>
<div class="software-photo">
<img src="icons/all_icons.png" alt="Software Icons" />
</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>