-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 886 Bytes
/
Copy pathindex.html
File metadata and controls
34 lines (31 loc) · 886 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pagina di Test con Font Personalizzato</title>
<style>
/* Prova a caricare il font dalla cartella .fonts dell'utente */
@font-face {
font-family: 'PIX7SEGS';
src: url('~/.fonts/PIX7SEGS.TTF') format('truetype');
}
body {
font-family: 'PIX7SEGS', sans-serif;
font-size: 24px;
text-align: center;
margin-top: 50px;
}
h1 {
color: #333;
}
p {
color: #555;
}
</style>
</head>
<body>
<h1>Benvenuto nella pagina di test</h1>
<p>Questa è una pagina HTML che usa il font personalizzato se presente, altrimenti usa il font di sistema.</p>
</body>
</html>