-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 918 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Carrier Pigeon</title>
<link rel="stylesheet" href="https://linfindel.github.io/nadircss/nadir.css">
</head>
<body class="absolute-centre">
<div class="card column">
<div class="text-center">
<h1 style="font-size: 5rem;" class="material-symbols-rounded" translate="no">raven</h1>
<h1>Carrier Pigeon</h1>
<p id="desc">Send files with plaintext</p>
</div>
<div class="row-flat">
<button onclick="location.href = 'send.html'">
<span class="material-symbols-rounded" translate="no">send</span>
Send
</button>
<button onclick="location.href = 'receive.html'">
<span class="material-symbols-rounded" translate="no">download</span>
Receive
</button>
</div>
</div>
</body>
</html>