pocketlang/docs/404.html
Thakee Nathees a83aa9438e documentations are refactored
function keyword changed back to fn
2022-05-07 17:47:58 +05:30

46 lines
848 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Roboto Mono', monospace;
}
.middle {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.display {
text-align: center;
font-size: clamp(22px, 3vw, 60px);
}
.fn {
color:#2b6cb0;
}
.string {
color:#219321
}
</style>
<title>pocketlang</title>
</head>
<body>
<div class="middle">
<div class="display">
<span class="fn">print</span>(<span class="string">'Page under construction'</span>)
</div>
</div>
</body>
</html>