-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (96 loc) · 4.26 KB
/
index.html
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
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Matthew's Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="sara mazal lessons" />
<meta name="keywords" content="HTML, CSS, JavaScript, mazal, icons" />
<meta name="author" content="Matthew Nichols" />
<!-- SGVsbG8hIE15IG5hbWUgaXMgU2FyYSBNYXphbC4gV2VsY29tZSB0byBteSBDb2RlUGVuIQ== -->
<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=Josefin+Sans:wght@200;300;400;500&family=Raleway:wght@100;200;300;400;500&family=Roboto:wght@300;400;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css"
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/particlesjs/2.2.3/particles.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<section class="nav">
<h1>MATTHEW DANH NICHOLS</h1>
<span class="m"> </span>
<h3 class="span loader">
<span class="m">S</span>
<span class="m">T</span>
<span class="m">U</span>
<span class="m">D</span>
<span class="m">E</span>
<span class="m">N</span>
<span class="m">T</span>
<span class="m"> </span>
<span class="m">P</span>
<span class="m">O</span>
<span class="m">R</span>
<span class="m">T</span>
<span class="m">F</span>
<span class="m">O</span>
<span class="m">L</span>
<span class="m">I</span>
<span class="m">O</span>
</h3>
<div class="nav-container">
<a class="nav-tab" href="#tab-projects">PROJECTS</a>
<a class="nav-tab" href="essays.html">ESSAYS</a>
<a class="nav-tab" href="#tab-connect">CONNECT</a>
<a class="nav-tab" href="#tab-schedule">SCHEDULE</a>
<a class="nav-tab" href="#tab-github">GITHUB</a>
<span class="nav-tab-slider"></span>
</div>
</section>
<main class="main">
<section class="slider" id="tab-projects">
<a href="projects.html">
<h1 class="fade-in">PROJECTS</h1>
<h2 class="fade-in">
Explore a showcase of my hands-on work, featuring technical builds, creative experiments, and interdisciplinary endeavors.
</h2>
</a>
</section>
<section class="slider" id="tab-essays">
<a href="essays.html"><h1 class="fade-in">ESSAYS</h1></a>
<h2 class="fade-in">Dive into my written analyses on a variety of topics, blending critical thought and personal perspective.</h2>
</section>
<section class="slider" id="tab-connect">
<a href="https://www.linkedin.com/in/matthewdanh/"><h1 class="fade-in">CONNECT</h1></a>
<h2 class="fade-in">Get in touch! I’m open to collaboration, questions, or just chatting about shared interests.</h2>
</section>
<section class="slider" id="tab-schedule">
<a href="https://calendar.google.com/calendar/u/0/appointments/schedules/AcZssZ2k4B4YuY4UZuXzPo9my-J3YVlKMdJLf8S3aqV5hNAImsSTgM8r4vlnavAih89aOzXrTM0JWnTo?gv=true"><h1 class="fade-in">SCHEDULE</h1></a>
<h2 class="fade-in">View my availability to coordinate meetings or catch up on upcoming activities and events.</h2>
</section>
<section class="slider" id="tab-github">
<a href="https://github.com/MatthewDanh"><h1 class="fade-in">GITHUB</h1></a>
<h2 class="fade-in">Read my reflections, insights, and updates as I navigate my academic journey and creative pursuits.</h2>
</section>
</main>
<canvas class="background"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="./script.js"></script>
</body>
</html>