Added meta in head

This commit is contained in:
Eunchong Kim 2021-07-25 18:10:04 +09:00
parent 62f1f2fe47
commit 1a95f1efb0

View File

@ -1,11 +1,26 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="UTF-8"><!-- charset meta element should be the first thing in <head> -->
<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>
</head>
<body>
<!-- UNO game div -->
<div id='uno-game'></div>
</body>