2021-11-01 13:36:38 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<title>Hello, World</title>
|
2021-11-01 16:30:23 +00:00
|
|
|
<style type="text/css">
|
|
|
|
.navbar {
|
|
|
|
width: 100%;
|
|
|
|
height: 20px;
|
|
|
|
background-color: #66ccff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar .navbar-item {
|
|
|
|
margin: auto;
|
|
|
|
position: relative;
|
|
|
|
padding: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
min-height: calc(100% - 58px - 40px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
height: 58px;
|
|
|
|
}
|
|
|
|
</style>
|
2021-11-01 13:36:38 +00:00
|
|
|
<script src="./bootstrap.js" defer></script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
</body>
|
2021-11-01 16:30:23 +00:00
|
|
|
|
2021-11-01 13:36:38 +00:00
|
|
|
</html>
|