Last active
January 9, 2020 19:52
-
-
Save Angelfirenze01/5a486667d7500a3238923c04026c2dbf to your computer and use it in GitHub Desktop.
Quiz Ninja - JavaScript: From Novice to Ninja by Darren Jones - Sitepoint
A Pen by Angelfirenze on CodePen.
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
// Welcome the user | |
alert("Welcome to Quiz Ninja!"); |
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
* { | |
margin: 0; | |
padding: 0; | |
} | |
header { | |
font: bold 36px/120% Arial, Helvetica, sans-serif; | |
background: #333; | |
color: #c00; | |
text-transform: uppercase; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment