blob: 16eec12be9c4b528b33b0e0141a685be5a868417 (
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">
<title>startpage</title>
<style>
body {
height: 100vh;
display: flex;
align-items: center;
font-family: 'Roboto Mono', monospace;
font-size: 11px;
justify-content: center;
background: #212121;
color: #fff;
}
</style>
</head>
<body>
<h1>Qutebrowser</h1>
</body>
</html>
|