-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathnewsletter.html
47 lines (44 loc) · 1.76 KB
/
newsletter.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 tags-->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--Open Graph Tags-->
<meta property="og:site_name" content="TBFighters" />
<meta property="og:url" content="https://tbfighters.org" />
<meta property="og:type" content="website" />
<meta property="theme-color" content="#D7211E" />
<!-- Style Tags -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="libs/toastify/toastify.css">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon/favicon-16x16.png">
<link rel="manifest" href="img/favicon/site.webmanifest">
<link rel="icon" type="image/x-icon" href="img/favicon/favicon.ico">
<script src="menu.js" defer></script>
<script src="libs/toastify/toastify.js"></script>
<!-- Variable Tags -->
<meta name="robots" content="index, follow" />
<meta property="og:title" content="Newsletter | TBFighters" />
<meta property="og:description"
content="Fighting for accessible tuberculosis testing and treatment to save over a million lives a year. Take action with us now." />
<title>Newsletter | TBFighters</title>
</head>
<body class="newsletter">
<main>
<div class="wrapper" style="padding-top: 60px;">
<p>You are being redirected... If you are not redirected automatically, make sure you have
JavaScript enabled.</p><br>
<br>
<p>We lead by following and act with compassion.</p>
<script>
window.onload = function () {
window.location.replace("https://newsletter.tbfighters.org/subscribe");
}
</script>
</div>
</main>
</body>
</html>