16 lines
502 B
HTML
16 lines
502 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Light Control</title>
|
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
|
|
/>
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="./app.js" data-container="#app"></script>
|
|
</body>
|
|
</html>
|