-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.16 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/images/favicon.ico" />
<link rel="stylesheet" href="style.css" />
<title>shenandoahbitcoinclub</title>
</head>
<body>
<div id="nav">
<a class="active-link" href="index.html">Home</a>
|
<a href="about.html">About</a>
|
<a href="learn.html">Learn</a>
|
<a href="support.html">Support</a>
</div>
<div>
<h1 class="name">Shenandoah Bitcoin Club</h1>
<p class="description">
Educating and collaborating on Bitcoin in the Northern Shenandoah Valley.
</p>
<h2>
We plan to meet every third Saturday of the month.
</h2>
<h2 class="news">
Check out the meetup group
<a href="https://www.meetup.com/shenandoah-bitcoin-club/" target="_blank">on Meetup.com</a>
to see when our next monthly meetup is.
</h2>
<img class="main-logo" src="images/shenandoahbitcoinlogo.png" alt="logo" />
</div>
</body>
</html>
<style>
.main-logo {
max-width: 100%;
max-height: 100vh;
margin: auto;
}
</style>