Last active
October 22, 2020 08:50
-
-
Save revox/2b1b337eb3d80a46d915fafb26a582d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" dir="ltr"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Basic responsive template</title> | |
<style> | |
/* a centred div with a maximum width */ | |
/* if you want really nice fonts use a Google font */ | |
.container { | |
max-width: 600px; | |
margin: 0 auto; | |
font-family: Helvetica; | |
line-height: 1.4em; | |
} | |
/* only titles ans subtitles should be centre aligned */ | |
H1 { | |
text-align: center; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Ipsum Bowie</h1> | |
<p>Sordid details following. Beware the savage jaw of 1984. Strange, mad celebration. | |
I'm floating in a most peculiar way. I'm afraid I can't help it. </p> | |
<p>I can stare for a thousand years. He was awful nice - really quite out of sight. | |
Tell my wife I love her very much. I've never done bad things. | |
He treats you well and makes you up real fine. So softly a supergod cries. </p> | |
<div class="flourish-embed" data-src="visualisation/782934"></div> | |
<script src="https://public.flourish.studio/resources/embed.js"></script> | |
<p>I've got more friends than I've had hot dinners. | |
If you think we're gonna make it, you better hang on to yourself. | |
Is it any wonder I reject you first? I'm floating in a most peculiar way. | |
I'm afraid of the world. </p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment