icon

あsdfghj

horietty
loading
horietty
更新日:

あsdfghj

<html>
  <head>
    <title>%title%</title>
    %style("main.css")%
    %script("main.js")%
  </head>
  <body>
    <div class='container'>
      <h1>%title%</h1>
      <div>%body%</div>
    </div>
  </body>
</html>
body {
  margin: 0px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 100%;

  background-image: url('https://storage.googleapis.com/content-runstant-staging/dummy/project_preview_images/9.png');
  background-size: cover;
  background-position: center center;

  color: white;
  text-shadow: 1px 1px 2px #000;
  word-break: break-all;
}
window.addEventListener('load', () => {
  let message = 'Hello, Runstant!';
  console.log(message);
});