blob: 05a074f0f2c8612cb57c6469c77eba791c3d478f (
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: "JetBrains Mono";
font-size: 11px;
justify-content: center;
background: #212121;
color: #fff;
}
</style>
</head>
<body>
<h1>Qutebrowser</h1>
</body>
</html>
|