Files
html-nginx-deployment/html/index.html
2023-01-07 17:27:54 +02:00

32 lines
1.2 KiB
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">
<title>Template</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/static/fav/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/static/fav/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/static/fav/favicon-16x16.png">
<link rel="shortcut icon" href="/static/fav/favicon.ico" type="image/x-icon">
<!-- CSS -->
<link rel="stylesheet" href="/static/css/fonts.css">
<link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
<div class="container">
<img src="/static/img/logo.png" alt="">
<h1>Hey, this template is hosted at <a href="http://192.168.195.195:30001">this</a> repo.</h1>
<p>You have had this page open for <span id="counter">1</span> seconds.</p>
</div>
</body>
<!-- JS -->
<script src="/static/js/main.js"></script>
<script>
// Actions get called from here. This makes it easy to see what starts where.
setInterval(function () {
incrementCounter();
}, 1000);
</script>
</html>