-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
45 lines (42 loc) · 1.59 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Holiday Shaders 2</title>
<link rel="stylesheet" href="styles/main.css" />
<!-- Bootstrap & JQuery -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/darkly/bootstrap.min.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous">
</script>
</head>
<body>
<div class="container">
<!-- Title and main buttons to switch shaders/open settings -->
<h2 class="text-center">Holiday Shaders 2: Credits</h2>
<div class="text-center">
<a href="index.html">Home</a>
•
<a href="tutorials.html">Tutorials</a>
•
<a href="credits.html">Credits</a>
•
<a href="contact.html">Contact</a>
</div>
<h3>Contact Info</h3>
<p>
If you have any questions/comments/suggestions, please tell me
at one of the places below:
</p>
<ul>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li><a href="https://github.com/ptrgags">GitHub</a></li>
<li><a href="https://ptrgags.deviantart.com">DeviantArt</a></li>
<li><a href="https://www.facebook.com/petegagliardi">Facebook</a></li>
</ul>
</div>
</body>
</html>