26 lines
625 B
HTML
26 lines
625 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>NeutralinoJs sample app</title>
|
|
<link rel="stylesheet" href="/styles.css">
|
|
|
|
<style>
|
|
body{
|
|
background-image: url('./img/bg.png');
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Neutralino.js client. This file is gitignored,
|
|
because `neu update` typically downloads it.
|
|
Avoid copy-pasting it.
|
|
-->
|
|
<script src="/js/neutralino.js"></script>
|
|
<!-- Your app's source files -->
|
|
<script src="/js/main.js"></script>
|
|
</body>
|
|
</html>
|