-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (58 loc) · 2.79 KB
/
index.html
File metadata and controls
64 lines (58 loc) · 2.79 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
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MGM3S342B6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-MGM3S342B6');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Broadband Commons</title>
<!-- bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.min.js" integrity="sha384-Y4oOpwW3duJdCWv5ly8SCFYWqFDsfob/3GkgExXKV4idmbt98QcxXYs9UoXAB7BZ" crossorigin="anonymous" async></script>
<!-- custom styles -->
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<!-- header -->
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
<a href="/" class="mb-3 mb-md-0 link-body-emphasis text-decoration-none">
<span class="fs-4 accent-font">Broadband Commons</span>
</a>
<!-- we don't need the menu yet, but saving for down the line -->
<!-- <ul class="nav nav-pills">
<li class="nav-item"><a href="#" class="nav-link active" aria-current="page">Home</a></li>
<li class="nav-item"><a href="#" class="nav-link">Book</a></li>
</ul> -->
</header>
</div>
<h1 class="visually-hidden">We're making broadband data easier</h1>
<!-- main -->
<main>
<div class="px-4 py-5 my-5 text-center col-lg-6 mx-auto">
<img class="d-block mx-auto mb-4" src="assets/logo.png" height="200" alt="">
<h1 class="display-5 fw-bold text-body-emphasis accent-font">
We're making broadband data easier
</h1>
<p class="lead mb-4">
Broadband Commons is an open collective that makes broadband data more accessible with public-domain tools and documentation.
</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<!-- <button type="button" class="btn btn-outline-secondary btn-lg px-4">Preview our book</button> -->
<a href="IntroducingBroadbandData.pdf" class="btn btn-outline-secondary btn-lg px-4" target="_blank">
Preview our book
</a>
<a href="https://airtable.com/shrfYxiCCtEJ8oacM" class="btn btn-primary btn-lg px-4 gap-3" target="_blank">
Join the network
</a>
</div>
</main>
</div>
</body>
</html>