-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
61 lines (60 loc) · 2.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>REMCodes: Contact</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B14SRW6GSH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-B14SRW6GSH");
</script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles/styles.css" type="text/css" />
<link rel="icon" href="images/favicon.png" type="image/png" />
<script src="scripts/main.js"></script>
</head>
<body>
<!-- ADD THE TOP BANNER -->
<a href="index.html"><img class="banner" src="images/banner.svg" alt="REMCodes Logo Banner" /></a>
<nav id="navbar" class="sticky">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projecthub.html">Projects</a></li>
<li class="this right"><a href="contact.html">Contact</a></li>
<li class="right"><a href="about.html">About</a></li>
</ul>
</nav>
<div class="row">
<div class="leftcolumn">
<div class="card">
<h1>Contact Me</h1>
<!-- <div class="fakeimg" style="height:200px;">Image</div> -->
<p>
<strong>Please email me at <a href="mailto:[email protected]">[email protected]</a></strong>
</p>
</div>
</div>
<div class="rightcolumn">
<div class="card">
<a href="about.html" class="nounderline">
<h2>About Me</h2>
<p>I'm REM, a 14 year old programmer, geek, and guitarist. To read more about me, click anywhere in this card.</p>
</a>
</div>
<div class="card">
<h2>Popular Pages</h2>
<p><strong>There are no popular pages right now.</strong></p>
</div>
</div>
</div>
<div class="footer">
<cite>
<p>©2021 REMCodes - Last modified 03-29-2022</p>
</cite>
</div>
</body>
</html>