-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
59 lines (57 loc) · 2.11 KB
/
Copy pathcontact.html
File metadata and controls
59 lines (57 loc) · 2.11 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<script language="JavaScript" src="js/validatorv31.js" type="text/javascript"></script>
</head>
<body>
<header class="top-header">
<div class="topnav">
<nav class="navbar navbar-dark bg-dark">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="projects.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="games.html">Games</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<section id="main">
<div class="container">
<div class="contact">
<article id="main-col">
<ul id="services">
<li>
<h1>Contact Information</h1>
<p>Email Address: roberttammaro2015@gmail.com</p>
<p>Phone Number: (706)-871-7638</p>
<p>(Please leave a voicemail or text)</p>
</li>
</ul>
</article>
</div>
</div>
</section>
<footer>
<p>Robert Tammaro, Copyright © 2021-<span id="date"></span></p>
</footer>
<script>
var date = document.getElementById("date");
var thisYear = new Date();
thisYear = thisYear.getFullYear();
date.innerHTML = thisYear;
</script>
</body>
</html>