mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-24 10:38:14 +03:00
3b32a87feb
- added link to the BrowserWindow documentation - added default icon - added commented lines for production BrowserWindow state Overall: - added typescript and sass support - updated default page. Now the "Hello World" sign placed in the center
20 lines
497 B
HTML
20 lines
497 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- CSS styles -->
|
|
<link rel="stylesheet" href="../css/index.css">
|
|
|
|
<!-- JS scripts -->
|
|
<script src="../js/test.js"></script>
|
|
|
|
<title>Hello World</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 class="greeting"></h1>
|
|
</body>
|
|
</html>
|