Created
November 10, 2019 11:09
-
-
Save Ivy-Walobwa/64afaffb8c8716ace1cef8f0a2d899e6 to your computer and use it in GitHub Desktop.
Rock Paper Scissors Game in Angular
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"> | |
<head> | |
<meta charset="utf-8"> | |
<title>RockPaperScissors</title> | |
<base href="/"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="icon" type="image/x-icon" href="favicon.ico"> | |
</head> | |
<body> | |
<header> | |
<h1>Rock Paper Scissors</h1> | |
</header> | |
<app-root></app-root> | |
</body> | |
</html> |
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; | |
box-sizing: border-box; | |
} | |
body{ | |
background: rgb(58, 58, 122); | |
} | |
header{ | |
background: white; | |
padding: 20px; | |
text-align: center; | |
font-size: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment