Created
June 11, 2020 12:32
-
-
Save Srushtika/da4793674dba9668748637c100b4b509 to your computer and use it in GitHub Desktop.
Code snippet 30 - For multiplayer space invaders article
This file contains 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>Space Invaders</title> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<meta name="description" content="Multiplayer space invaders" /> | |
<link | |
id="favicon" | |
rel="icon" | |
href="https://glitch.com/edit/favicon-app.ico" | |
type="image/x-icon" | |
/> | |
<link | |
rel="stylesheet" | |
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" | |
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" | |
crossorigin="anonymous" | |
/> | |
<link | |
href="https://fonts.googleapis.com/css2?family=VT323&display=swap" | |
rel="stylesheet" | |
/> | |
<link rel="stylesheet" href="/style.css" /> | |
</head> | |
<body class="room-full-body"> | |
<img | |
alt="Space invaders" | |
width="580" | |
height="250" | |
src="https://cdn.glitch.com/f66772e3-bbf6-4f6d-b5d5-94559e3c1c6f%2Fheader1.png?v=1589891887836" | |
/> | |
<div class="game-instructions"> | |
<p> | |
SORRY, YOU ARE LATE, THIS GAME ROOM IS ALREADY FULL! <br/><br/> | |
</p> | |
</div> | |
<img | |
alt="Invader avatars" | |
width="60%" | |
height="300" | |
src="https://cdn.glitch.com/f66772e3-bbf6-4f6d-b5d5-94559e3c1c6f%2Fallinvaders.png?v=1589884216800" | |
/> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment