-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (56 loc) · 2.37 KB
/
index.html
File metadata and controls
65 lines (56 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Evan M. Matthews</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
</head>
<body id="home">
<div id="header-placeholder"></div>
<section id="intro">
<div class="intro-content">
<h1>Welcome to my website!</h1>
<p><i>Slowly getting updates each week!</i></p>
<!-- You can add more introductory text or elements here -->
</div>
<div class="profile-picture-container">
<img src="assets/images/profile2.png" alt="Profile Picture" id="profilePic">
</div>
</section>
<section id="perlin-animation">
<canvas id="perlin-canvas"></canvas>
</section>
<script src="header.js"></script>
<script src="perlin.js"></script>
<section id="resume">
<h2>Resume</h2>
<div class="document-previews">
<div class="document-preview-box">
<h3>My Resume</h3>
<p>A concise summary of my professional experience, skills, and education. Click to view or download.</p>
<a href="assets/documents/Evan_Matthews_Resume.pdf" target="_blank" class="read-more">View Resume</a>
</div>
</div>
</section>
<section id="contact">
<h2>Connect With Me</h2>
<div class="social-links">
<a href="https://github.com/ematth" target="_blank" title="GitHub" class="social-link">
<img src="assets/icons/github-mark.svg" alt="GitHub Logo">
</a>
<a href="https://linkedin.com/in/ematth" target="_blank" title="LinkedIn" class="social-link">
<img src="assets/icons/InBug-Black.png" alt="LinkedIn Logo">
</a>
<a href="https://instagram.com/evanmatthews_" title="Instagram" class="social-link">
<img src="assets/icons/black-instagram-icon.webp" alt="Instagram Logo">
</a>
<a href="https://x.com/ematth" target="_blank" title="Twitter/X" class="social-link">
<img src="assets/icons/x-logo.svg" alt="Twitter/X Logo">
</a>
<!-- Add more social links as needed -->
</div>
</section>
</body>
</html>