Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions EnglishGame
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<style>
#container{
padding:20px;

}
#game{
display:inline-block;
float:left;
height:500px;
width:500px;
border-style:solid;
border-color:black;
}
#score{
display:inline-block;
float:right;
height:300px;
width:300px;
border-style:solid;
border-color:black;
padding:20px;
margin-right:250px;
margin-top:100px;
}

</style>
</head>
<body>
<div id="container">
<h1>English Game</h1>
<div id="game">
</div>

<div id= "score">
<h3>YOUR SCORE</h3>
</div>

</div>

<?php
// put your code here
?>
</body>
</html>