forked from mikemaccana/outdated-browser-rework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 861 Bytes
/
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
<html>
<head>
<link rel="stylesheet" type="text/css" href="dist/style.css">
<script src="dist/outdated-browser-rework.js"></script>
<script>
// Since this is a demo page, we disable support for all browsers
outdatedBrowserRework({
fullscreen: false,
browserSupport: {
'Edge': false,
'Chrome': false,
'Safari': false,
'Mobile Safari': false,
'Firefox': false,
'Opera': false,
'IE': false,
}
})
</script>
<style type="text/css">
p {
font-family: "Open Sans", "Segoe UI", sans-serif;
font-size: 24pt;
}
</style>
</head>
<body>
<p>This page is a demonstration, showing what a user with an outdated browser will experience.</p>
<p>All browsers in this demo are marked not supported, so you'll see it even with new browsers!</p>
<div id="outdated"></div>
</body>
</html>