Files
http-server-in-c/public/index.html

37 lines
930 B
HTML

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#root {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-size: 3rem;
}
p {
font-size: 1.5rem;
}
a {
font-size: 1.5rem;
}
</style>
</head>
<body>
<div id="root">
<h1>Demo page</h1>
<p>If you are seeing this then the server is working :)</p>
<p><a href="/includetest.html">Click here</a> to see an example of including css and js as separate files</p>
<!-- <<LINKS>> -->
</div>
</body>