-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
45 lines (41 loc) · 1.66 KB
/
contact.html
File metadata and controls
45 lines (41 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<title>GradeCalc - Grading Calculator</title>
<link rel="stylesheet" href="css/index.css" />
<link rel="icon" type="image/x-icon" href="img/icon.ico">
</head>
<body>
<div id="site-container">
<div class="spacer"></div>
<header id="main-header">
<img src="img/header-logo.png" />
<h2>Made for high-schoolers, by a high-schooler.</h2>
</header>
<nav id="nav-menu">
<a class="nav-link" href="index.html">Calculator</a>
<a class="nav-link" href="about.html">About Me</a>
<a class="nav-link" href="news.html">News</a>
<a class="nav-link" href="contact.html">Contact</a>
<a class="nav-link" href="https://www.github.com/john-fiore/gradecalc" target="_blank">GitHub</a>
</nav>
<section class="content">
<article id="article-contact">
<h1>Contact Information</h1>
<p>Need to contact me about something? Found a bug? Have feedback? Whatever it is, here are the best ways you can:</p>
<br />
<p>Email: <a href="mailto:johnfthedev@gmail.com">johnfthedev@gmail.com</a></p>
<p>Instagram: @johnfthedev</p>
<!-- Add donation link when domain comes -->
</article>
</section>
<div class="small-spacer"></div>
<footer id="site-footer">
<p>Copyright © 2025-2025 John Fiore</p>
<p>All Rights Reserved.</p>
<p>Website v1.0.1</p>
</footer>
</div>
<script src="js/calculator.js"></script>
</body>
</html>