Skip to content

Instantly share code, notes, and snippets.

@Ivy-Walobwa
Created November 10, 2019 11:09
Show Gist options
  • Save Ivy-Walobwa/64afaffb8c8716ace1cef8f0a2d899e6 to your computer and use it in GitHub Desktop.
Save Ivy-Walobwa/64afaffb8c8716ace1cef8f0a2d899e6 to your computer and use it in GitHub Desktop.
Rock Paper Scissors Game in Angular
<!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>
*{
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