-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (61 loc) · 1.71 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
<!DOCTYPE html>
<html lang="it">
<head>
<title>RICROS</title>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@import url(https://fonts.bunny.net/css?family=fira-code:300,400,500,600,700|fira-mono:400,500,700|fira-sans:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i);
body {
background-color: #7f7fbf;
color: white;
font-family: "Fira Sans", sans-serif;
font-size: 2em;
display: flex;
flex-direction: column;
height: 100vh;
margin: 0;
}
main {
flex: 1;
text-align: center;
display: flex;
align-items: center;
}
footer {
text-align: center;
color: lightgray;
padding: 1em;
display: flex;
font-size: 0.5em;
justify-content: safe center;
flex-wrap: wrap;
}
.name {
font-size: 3em;
font-weight: 700;
font-family: "Fira Mono", monospace;
}
.box {
margin: 0 auto;
}
.info {
padding: 0.25em 1.5em;
}
</style>
</head>
<body>
<main>
<div class="box">
<div class="name">RICROS</div>
<div>Società di holding</div>
</div>
</main>
<footer>
<div class="info">Codice fiscale: 97948700154</div>
<div class="info">Ragione sociale: RICROS S.s.</div>
<div class="info">Numero REA: MI2697777</div>
</footer>
</body>
</html>