-
Notifications
You must be signed in to change notification settings - Fork 0
/
oldbrowser.html
30 lines (29 loc) · 1.31 KB
/
oldbrowser.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
<!DOCTYPE html>
<html lang="it">
<head>
<title>Browser non supportato</title>
<link rel="icon" type="image/svg+xml" href="./favicon.svg">
<link rel="alternative icon" type="image/png" href="./favicon-16.png" sizes="16x16">
<link rel="alternative icon" type="image/png" href="./favicon-32.png" sizes="32x32">
<link rel="alternative icon" type="image/png" href="./favicon-48.png" sizes="48x48">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/uikit.min.css" />
<style>
body {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
body::selection {
background: transparent;
}
</style>
</head>
<body class="uk-container uk-margin-top uk-overflow-hidden">
<h1>Browser non supportato</h1>
<p>Il tuo browser <b>non</b> supporta la API sperimentale "<i>Web Serial</i>" presente sulla maggior parte dei browser Chromium.</p>
<p>Utilizza l'ultima versione di Google Chrome, Microsoft Edge (Chromium) o un altro browser basato su Chromium per visualizzare la pagina</p>
</body>
</html>