Skip to content

Instantly share code, notes, and snippets.

@natemccurdy
Last active June 2, 2016 23:26
Show Gist options
  • Save natemccurdy/e8d70920c18adeddbb8d to your computer and use it in GitHub Desktop.
Save natemccurdy/e8d70920c18adeddbb8d to your computer and use it in GitHub Desktop.
index.html for nginx lab
<html>
<head>
<style>
.blink {
animation: blink 1s steps(5, start) infinite;
-webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink {
to {
visibility: hidden;
}
}
</style>
</head>
<body>
<pre class="blink" style="text-align: center">Welcome to Puppet Fundamentals!</pre>
<img src="http://i.imgur.com/UIwsZwk.gif" alt="The baby!" style="display: block;margin: 0 auto">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment