-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
77 lines (77 loc) · 2.62 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>UK Food Emissions | Contact</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
crossorigin="anonymous"
/>
</head>
<body>
<div class="container-sm">
<div class="m-3">
<header
class="d-flex flex-wrap align-items-center justify-content-center justify-content-md-between py-3 mb-4 mt-4 border-bottom"
>
<a
href="/"
class="d-flex align-items-center col-md-3 mb-2 mb-md-0 text-dark text-decoration-none display-1 text-nowrap"
>
<h1>UK Food Emissions</h1>
</a>
<ul
class="nav col-12 col-md-auto mb-2 justify-content-center mb-md-0"
>
<li>
<a href="/guide.html" class="nav-link px-2 link-dark fs-5"
>What is this?</a
>
</li>
<li>
<a href="/methodology/" class="nav-link px-2 link-dark fs-5"
>Methodology</a
>
</li>
<li>
<a href="/contact.html" class="nav-link px-2 link-dark fs-5"
>Contact</a
>
</li>
</ul>
</header>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Contact</li>
</ol>
</nav>
<h2>Contact</h2>
<p>For any queries or suggestions, please contact:</p>
<a class="h3" href="mailto:[email protected]"
><em>[email protected]</em></a
>
<h2 class="mt-4">Contributions</h2>
<p>
This project is completely
<a href="https://github.com/sebhulse/food-emissions">open source</a>
and free to use. Please star the repo and consider
<a href="https://github.com/sponsors/sebhulse">sponsoring me</a> if
you find it useful!
</p>
<p>
Any contributions are welcome - particularly with regards to UX/UI,
documentation, explanation, data, references, and methodology. Please
open a
<a href="https://github.com/sebhulse/food-emissions/issues"
>GitHub issue</a
>, discussion, or
<a href="mailto:[email protected]">contact me</a> for significant
changes.
</p>
</div>
</div>
</body>
</html>