foalts2-cli
Version:
CLI tool for FoalTS
49 lines • 1.04 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Foal App</title>
<link rel="shortcut icon" href="logo.png">
<style>
html, body {
height: 100%
}
body {
margin: 0;
text-align: center;
font-family: Arial;
background-color: #282c34;
}
.wrapper {
height: 95%;
display: flex;
flex-direction: column;
justify-content: center;
}
h1 {
color: white;
font-weight: bold;
margin-bottom: 40px;
letter-spacing: 2px;
}
a {
color: #4B89EC;
letter-spacing: 1px;
font-size: 1.3rem;
font-weight: bold;
}
</style>
</head>
<body>
<div class="wrapper">
<div>
<img src="logo.png" alt="FoalTS logo">
</div>
<h1>Welcome on board ✨</h1>
<div>
<a href="https://foalts.org/docs/tutorials/simple-todo-list/1-installation">Learn FoalTS</a>
</div>
</div>
</body>
</html>