19 lines
521 B
HTML
19 lines
521 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>HTML5 Deck of Cards</title>
|
||
|
<link href="example.css" rel="stylesheet">
|
||
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,300,600|Ubuntu+Condensed" rel="stylesheet" type="text/css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="container"></div>
|
||
|
|
||
|
<div id="topbar"></div>
|
||
|
|
||
|
<script src="deck.js"></script>
|
||
|
<script src="example.js"></script>
|
||
|
</body>
|
||
|
</html>
|