-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 728 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<title>React-Redux Solitaire</title>
<meta name="description" content="The classic card game Solitaire written in React">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-Control" content="no-cache">
<link rel="shortcut icon" type="image/png" href="./dist/favicon.ico">
<link rel="canonical" href="http://pl12133.github.io/react-solitaire">
<style>
#root {
height: 100%;
}
body, html {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="root"></div>
</body>
<script type="text/javascript" src="dist/bundle.js"></script>
</html>