-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojecthub.html
81 lines (80 loc) · 3.51 KB
/
projecthub.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
<!DOCTYPE html>
<html>
<head>
<title>REMCodes: Project Hub</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 class="this"><a href="projecthub.html">Projects</a></li>
<li class="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>Project Hub</h1>
<!-- <div class="fakeimg" style="height:200px;">Image</div> -->
<p><strong>Note:</strong> some links may direct to outside pages. REMCodes will not be held responsible for any broken links, altered websites, or anything else outside of this website.</p>
</div>
<!-- <div class="card">
<h2>TITLE HEADING</h2>
<div class="fakeimg" style="height:200px;">Image</div>
<p>Some text..</p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
</div>
<div class="card">
<h2>TITLE HEADING</h2>
<div class="fakeimg" style="height:200px;">Image</div>
<p>Some text..</p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
</div>
<div class="card">
<h2>TITLE HEADING</h2>
<div class="fakeimg" style="height:200px;">Image</div>
<p>Some text..</p>
<p>Sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco.</p>
</div> -->
<div class="card">
<a href="incremental.html" class="nounderline">
<h2>Incremental Online Game (updated 3/29)</h2>
<p>I began making this a few weeks ago. To play, click this card.</p>
</a>
</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>