-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (96 loc) · 3.55 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<title>Associazione "Fino all'ultimo respiro" - Sito in costruzione</title>
<link rel="icon" href="favicon.ico?" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@font-face {
font-family: 'AileronRegular';
src: url('public/aileron/aileron-regular-webfont.woff2') format('woff2'),
url('public/aileron/aileron-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'AileronRegular';
src: url('public/aileron/aileron-bold-webfont.woff2') format('woff2'),
url('public/aileron/aileron-bold-webfont.woff') format('woff');
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'AileronRegular';
src: url('public/aileron/aileron-italic-webfont.woff2') format('woff2'),
url('public/aileron/aileron-italic-webfont.woff') format('woff');
font-weight: italic;
font-style: normal;
}
body {
font-family: AileronRegular, sans-serif;
margin: 0;
padding: 0;
background-image: url('public/bg/1.jpg');
text-align: center;
}
.logo{
height: 350px;
width: 350px;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
}
img {
max-width: 100%;
height: auto;
}
.quote {
font-style: italic;
padding-top: 1rem;
padding-bottom: 3rem;
}
.donation-info {
padding-top: 3rem;
padding-bottom: 1rem;
text-align: left;
}
.social-buttons {
margin-top: 2rem;
}
.social-buttons a {
display: inline-block;
margin-right: 10px;
margin-left: 10px;
}
.social-buttons a i {
color: black;
font-size: 2em;
}
</style>
</head>
<body>
<div class="container">
<img class="logo" src="public/logo.png" alt="Logo Associazione Fino all'ultimo respiro">
<div class="quote">
<p>"Ci sono gli eroi della Marvel gli eroi della Comics e poi ci siete voi... avete un potere che io considero quello più forte e più potente: date speranza a noi malati di fibrosi cistica."</p>
<p>- Alessia Mantonico</p>
</div>
<h2> Sito attualmente in costruzione, stiamo lavorando su qualcosa di fantastico!</h2>
<div class="donation-info">
<h3>Sostienici:</h3>
<p><strong>C/C Banca:</strong> IT 62 S 05696 51470 00004 1680X55</p>
<p><strong>Beneficiario:</strong> Fino all'ultimo respiro</p>
<p>Seguici sui nostri profili social per restare aggiornato sulle nostre iniziative</p>
</div>
<div class="social-buttons">
<a href="https://www.facebook.com/finoallultimorespiro.org/"><i class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com/finoallultimorespiro_org/"><i class="fab fa-instagram"></i></a>
<a href="mailto:[email protected]"><i class="fas fa-envelope"></i></a>
</div>
</div>
</body>
</html>