Files
wlan-cloud-ui/app/index.html
2020-08-03 12:03:56 -04:00

33 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<!-- The first thing in any HTML file should be the charset -->
<meta charset="utf-8" />
<!-- Make the page mobile compatible -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Allow installing the app to the homescreen -->
<meta name="mobile-web-app-capable" content="yes" />
<script type="text/javascript" src="config.js"></script>
</head>
<body>
<!-- Display a message if JS has been disabled on the browser. -->
<noscript
>If you're seeing this message, that means
<strong>JavaScript has been disabled on your browser</strong>, please
<strong>enable JS</strong> to make this app work.</noscript
>
<!-- Open Sans Font -->
<!-- <link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" /> -->
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,500&display=swap"
rel="stylesheet"
/>
<div id="root"></div>
</body>
</html>