blob: b848797129bd360b3b5e6ba817b66106fc3af6ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='stylesheet' type='text/css' href="style.css">
<title>startpage</title>
<style>
body {
height: 97.5vh;
display: flex;
align-items: center;
font: 12px monospace;
justify-content: center;
background: #212121;
color: #fff;
}
</style>
</head>
<body>
<h1>Qutebrowser</h1>
</body>
</html>
|