40 lines
562 B
HTML
40 lines
562 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Sciter Demo</title>
|
|
<style>
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
font-size: 16px;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
background-color: white;
|
|
color: black;
|
|
}
|
|
|
|
#hello {
|
|
width: 120px;
|
|
height: 32px;
|
|
|
|
margin: 1*;
|
|
padding: 0;
|
|
|
|
border: 1px solid black;
|
|
|
|
text-align: center;
|
|
line-height: 32px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p id="hello">Hello, World!</p>
|
|
</body>
|
|
</html>
|