Skip to content

Instantly share code, notes, and snippets.

View Plastkort-nu's full-sized avatar

Plastkort.nu Plastkort-nu

  • Plastkort.nu
  • Sweden
View GitHub Profile
@Plastkort-nu
Plastkort-nu / index.html
Created February 28, 2020 21:39
Kontakter cPanel / WHM
<p><strong>Webbyr&aring;n WEBBAB&nbsp;</strong></p>
<p><a href="tel:+4626614000">026-61 40 00</a><br>
<a href="mailto:[email protected]">[email protected]</a></p>
<p><i><small>V&auml;lkommen att kontakta oss vid evenuella funderingar.</small></i></p>
@Plastkort-nu
Plastkort-nu / gist:af32aedb44eef5e8c612528241860b50
Created November 20, 2018 01:23 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
@Plastkort-nu
Plastkort-nu / made-with-love.html
Created November 20, 2018 01:03 — forked from oliveratgithub/made-with-love.html
Various HTML-snippets to add "Made with love" to your website
<!-- Example #1 - no styling -->
Made with ❤ in Switzerland
<!-- Example #2 - inline-styled ❤ -->
Made with <span style="color: #e25555;">&#9829;</span> in Switzerland
Made with <span style="color: #e25555;">&hearts;</span> in Switzerland
<!-- Example #3 - CSS-style class for ❤ -->
<style>.heart{color:#e25555;}</style>
Made with <span class="heart"></span> in Switzerland