Last active
June 2, 2016 23:26
-
-
Save natemccurdy/e8d70920c18adeddbb8d to your computer and use it in GitHub Desktop.
index.html for nginx lab
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
<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