Browse Source

feat: support us section

main
Garrit Franke 3 years ago
parent
commit
d3b4f23a02
Signed by: garrit
GPG Key ID: BB54AF7EB0939F3D
  1. 26
      index.html
  2. 3
      styles/contact.css
  3. 6
      styles/index.css
  4. 5
      styles/support.css

26
index.html

@ -100,5 +100,31 @@
>
</div>
</section>
<section class="support-us">
<div class="support-us__container">
<h2>Support Us</h2>
<p>
The services on this platform are 100% free of charge.
Hosting servers does have its price though. Concider
supporting us by leaving a small donation.
</p>
<a
class="button__link button__contact"
href="https://donate.slashdev.space"
><p>Donate</p></a
>
</div>
</section>
</body>
<footer>
Copyright © 2021 Garrit Franke<br />
This website is licensed under the
<a
href="https://git.slashdev.space/garrit/slashdev.space-landing/src/branch/main/LICENSE"
>MIT License</a
>. The source code for this website can be found
<a href="https://git.slashdev.space/garrit/slashdev.space-landing"
>here</a
>.
</footer>
</html>

3
styles/contact.css

@ -1,5 +1,6 @@
.contact__container {
margin: auto 12vw;
width: 80vw;
margin: auto;
justify-content: center;
}

6
styles/index.css

@ -6,6 +6,8 @@
@import url("./welcome.css");
@import url("./services.css");
@import url("./contact.css");
@import url("./support.css");
/* Fonts */
@font-face {
@ -25,3 +27,7 @@ body {
font-weight: 250;
text-align: center;
}
footer {
margin-bottom: 2rem;
}

5
styles/support.css

@ -0,0 +1,5 @@
.support-us__container {
width: 80vw;
margin: auto;
justify-content: center
}
Loading…
Cancel
Save