-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 1007 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="#">
<link rel="icon" type="image/x-icon" sizes="16x16" href="./public/assets/images/icons/16x16.ico">
<link rel="icon" type="image/x-icon" sizes="32x32" href="./public/assets/images/icons/32x32.ico">
<link rel="icon" type="image/x-icon" sizes="48x48" href="./public/assets/images/icons/48x48.ico">
<link rel="icon" type="image/x-icon" sizes="64x64" href="./public/assets/images/icons/64x64.ico">
<link rel="icon" type="image/x-icon" sizes="96x96" href="./public/assets/images/icons/96x96.ico">
<link rel="stylesheet" href="./src/styles/styles.css">
<link rel="stylesheet" href="./src/styles/font-styles.css">
<title>Battleship Js</title>
</head>
<body>
<div class="loader-container">
<div class="loading">Loading</div>
<div class="loader"></div>
</div>
<script type="module" src="./src/main.js"></script>
</body>
</html>