98se.css/index.html

24 lines
442 B
HTML
Raw Normal View History

2020-04-16 11:42:55 -04:00
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="./style.css?t=1"></style>
2020-04-16 11:56:39 -04:00
<style>
body {
height: 100vh;
margin: 0;
padding: 0;
background: var(--button-face);
display: flex;
align-items: center;
justify-content: center;
}
</style>
2020-04-16 11:42:55 -04:00
</head>
<body>
<fieldset>
2020-04-16 11:56:39 -04:00
<button><u>H</u>ello, world!</button>
<button disabled>Unavailable</button>
2020-04-16 11:42:55 -04:00
</fieldset>
</body>
</html>