-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (39 loc) · 875 Bytes
/
index.html
File metadata and controls
42 lines (39 loc) · 875 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Contact info</title>
<style>
#container {
text-align: center;
width: 60%;
padding: 20px;
border: 2px solid #ccc;
border-radius: 10px;
margin: 50px auto;
font-family: sans-serif;
}
img {
width: 300px;
height: 300px;
}
a {
text-decoration: none;
color: inherit;
}
h1 {
font-size: 12pt;
font-family: sans-serif;
}
</style>
</head>
<body>
<div id="container">
<h1>Contact Info</h1>
<a href=https://signal.me/#eu/y4XHEwM41JNryulm50GcylTysDkVUxJQPvgpz2SpNEWcAMbDLE9FFaC5djJgrnL5>
<img src="./signal_qr_code.png" alt="Signal QR Code">
</a>
<br>
<a href=https://signal.me/#eu/y4XHEwM41JNryulm50GcylTysDkVUxJQPvgpz2SpNEWcAMbDLE9FFaC5djJgrnL5>Send me a Signal</a>
</div>
</body>
</html>