-
Notifications
You must be signed in to change notification settings - Fork 6
/
learnMore.html
97 lines (87 loc) · 3.81 KB
/
learnMore.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<!-- home page ?-->
<html>
<head> <!-- probably on all pages -->
<link rel="stylesheet" href="bootstrap-5.0.1-dist/css/bootstrap.css">
<script src="bootstrap-5.0.1-dist/js/bootstrap.bundle.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--nav bar with header and tabs-->
<!-- nave bar should have click able drop downs-->
<header>
<a href = "index.html">
<img class = "img-logo" src = "assets/logo.png" alt = "Local Connectivity Lab Logo">
</a>
<h1>
<a id = "landing-link" href = "index.html"> Seattle Community Network </a>
</h1>
</header>
<!--NAV BAR CODE-->
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutUs.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="https://docs.seattlecommunitynetwork.org/">Learn More</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ourSites.html">Connect</a>
</li>
<li class="nav-item">
<a class = "nav-link" href="https://coverage.seattlecommunitynetwork.org/">Map</a>
</li>
<li class="nav-item">
<a class="nav-link" href="donate.html">Donate</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://docs.seattlecommunitynetwork.org/community/tech-help">Get Help</a> <!--dropdown-->
</li>
</ul>
</div>
</div>
</nav>
<!-- FOOTER -->
<div class = "footer">
<div class = "flex-container">
<div class = "flex-item-left">
<h3> Address </h3>
<p class = "footer-text"> 3800 E Stevens Way NE, Seattle, WA 98195 </p>
<p class = "footer-text"> [email protected] </p>
<br>
<a href = "https://www.instagram.com/seattlecommnet/"><img class = "logo" src = "assets/IG_icon_circle.png" alt = "Instagram logo"></a>
<a href = "https://twitter.com/SeattleCommNet"><img class = "logo" src = "assets/twitter_icon_circle.png" alt = "twitter logo"></a>
<a href = "https://www.facebook.com/SeattleCommNet"><img class = "logo" src = "assets/facebook_icon_circle.png" alt = "Facebook logo"></a>
</div>
<div class = "flex-item-left">
<h3> Mission </h3>
<p class = "footer-text">
To facilitate community focused technology development and
research in support of low-income, marginalized populations
and groups.
</p>
</div>
<div class = "flex-item-left">
<div class = "flex-item-left">
<button onclick="location.href='https://discord.gg/gn4DKF83bP'" id = "subscribe-button">
Join our Discord
</button>
<br><br>
<button onclick="location.href='https://groups.google.com/a/seattlecommunitynetwork.org/g/local-connectivity-lab/'" id = "subscribe-button">
Subscribe to Mailing List
</button>
</div>
</div>
</div>
</div>
</body>
</html>