-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdonate.html
102 lines (89 loc) · 3.6 KB
/
donate.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
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<title>Coding Teacher Podcast</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="css.css?family=Raleway">
<link rel="stylesheet" href="font-awesome.min.css">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Raleway", sans-serif}
body, html {
height: 100%;
line-height: 1.8;
}
/* Full height image header */
.bgimg-1 {
background-position: center;
background-size: cover;
background-image: url("/w3images/mac.jpg");
min-height: 100%;
}
.w3-bar .w3-button {
padding: 16px;
}
</style>
<meta name="flattr:id" content="mr02q2">
</head>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-card-2" id="myNavbar">
<a href="index.html#home" class="w3-bar-item w3-button w3-wide">LOGO</a>
<!-- Right-sided navbar links -->
<div class="w3-right w3-hide-small">
<a href="about.html">ABOUT</a>
<a href="contribute.html">CONTRIBUTE!</a>
<a href="donate.html"><b>DONATE</b></a>
<a href="contact.html">CONTACT</a>
<a href="index.html#podcasts">PODCAST</a>
<!--<a href="#home" class="w3-bar-item w3-button"><i class="fa fa-home"></i> HOME</a>-->
</div>
<!-- Hide right-floated links on small screens and replace them with a menu icon -->
<a href="javascript:void(0)" class="w3-bar-item w3-button w3-right w3-hide-large w3-hide-medium" onclick="w3_open()">
<i class="fa fa-bars w3-padding-right w3-padding-left"></i>
</a>
</div>
</div>
<!-- Sidebar on small screens when clicking the menu icon -->
<nav class="w3-sidebar w3-bar-block w3-black w3-card-2 w3-animate-left w3-hide-medium w3-hide-large" style="display:none" id="mySidebar">
<a href="javascript:void(0)" onclick="w3_close()" >Close ×</a>
<a href="about.html" onclick="w3_close()" >ABOUT</a>
<a href="contribute.html" onclick="w3_close()" >CONTRIBUTE!</a>
<a href="donate.html" onclick="w3_close()" ><b>DONATE</b></a>
<a href="contact.html" onclick="w3_close()" >CONTACT</a>
<a href="index.html#podcasts" onclick="w3_close()" >PODCAST</a>
</nav>
<!-- Podcast Section -->
<div class="w3-container w3-padding-128" id="podcasts">
<h3 class="w3-center">donate</h3>
Each podcast episode has it's own shownote site where the authors can provide donation buttons. For donations toward <a href="http://codeweek.eu/">Codeweek.Eu</a>, please see there. Please note that this site is hosted on <a href="https://github.com">Github.com</a>. Github currently charges no fee for hosting static websites and allows the display of donation buttons. Other, moneay-making elements like ads are not allowed.
<br>
</div>
<!-- Promo Section "Statistics" -->
<!--<div class="w3-container w3-row w3-center w3-dark-grey w3-padding-64">
<div class="w3-quarter">
<span class="w3-xxlarge">2+</span>
<br>Members
</div>
<div class="w3-quarter">
<span class="w3-xxlarge">1+</span>
<br>Podcasts
</div>
</div>-->
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-64">
<a href="#home" class="w3-button"><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a>
<div class="w3-xlarge w3-section">
<!--
<i class="fa fa-facebook-official w3-hover-text-indigo"></i>
<i class="fa fa-flickr w3-hover-text-red"></i>
<i class="fa fa-instagram w3-hover-text-purple"></i>
<i class="fa fa-twitter w3-hover-text-light-blue"></i>
<i class="fa fa-linkedin w3-hover-text-indigo"></i>
-->
</div>
</footer>
</body>
</html>