Added meta in head
This commit is contained in:
parent
62f1f2fe47
commit
1a95f1efb0
17
index.html
17
index.html
@ -1,11 +1,26 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
|
<meta charset="UTF-8"><!-- charset meta element should be the first thing in <head> -->
|
||||||
|
|
||||||
<title>Uno game JS</title>
|
<title>Uno game JS</title>
|
||||||
|
|
||||||
|
<!-- The HTML <meta> Element -->
|
||||||
|
<meta name="description" content="UNO game in JavaScript DEMO">
|
||||||
|
<meta name="keywords" content="UNO, Game, JavaScript">
|
||||||
|
<meta name="author" content="Eunchong Kim">
|
||||||
|
|
||||||
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
|
||||||
|
|
||||||
|
<!-- Setting The Viewport -->
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
|
<!-- JS -->
|
||||||
<script src='js/uno_game.js'></script>
|
<script src='js/uno_game.js'></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<!-- UNO game div -->
|
||||||
<div id='uno-game'></div>
|
<div id='uno-game'></div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user