-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (60 loc) · 1.81 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>LunaONE helps businesses develop better software. We offer on-site and remote assistance, consulting, and training.</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<style>
body {
background-color: #222222;
color: white;
font-family: "Avenir Next", "AvenirNext-Regular", "Helvetica Neue", Helvetica, Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
a {
color: white;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.logo {
width: 20vw;
max-width: 120px;
padding-top: 20vh;
padding-bottom: 40vh;
}
.contact {
padding-top: 40vh;
padding-bottom: 40vh;
}
.details {
padding-top: 40vh;
padding-bottom: 40vh;
}
</style>
</head>
<body>
<img src="./icon_white.svg" class="logo">
<span>
<b>LunaONE GmbH</b><br/>
helping businesses<br/>
ship great software
</span>
<span class="contact">
<a href="mailto:[email protected]">[email protected]</a><br><br>
<a href="tel:+49-89-21539697">+49 89 2153 9697</a>
</span>
<span class="details">
LunaONE GmbH<br>
Mildred-Scheel-Bogen 64<br>
80804 München<br><br>
Geschäftsführer: Timm Preetz<br><br>
Handelsregistereintrag: Amtsgericht München, HRB 235878<br><br>
Umsatzsteueridentifikationsnummer: DE314750570
</span>
</body>
</html>