This commit is contained in:
Marina Ferreira 2018-07-16 20:50:14 -03:00
parent 256d7ef78f
commit f0c6a758c9
5 changed files with 23 additions and 0 deletions

View File

View File

View File

13
video-1/index.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Memory Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<script src="scripts.js"></script>
</body>
</html>

10
video-1/styles.css Normal file
View File

@ -0,0 +1,10 @@
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
height: 100vh;
background: #060AB2;
}