-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunsupported-browser.html
55 lines (51 loc) · 1.66 KB
/
unsupported-browser.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Unsupported Browser</title>
<link rel="stylesheet" href="./assets/css/normalize.css">
<link rel="stylesheet" href="./assets/css/unsupported-browser.css">
</head>
<body>
<div class="outdated-browser">
<h2>Unsupported Browser</h2>
<p>Your web browser appears to be outdated. Our website may not look quite right in it.</p>
<p>Please consider updating your browser to enjoy an optimal experience.</p>
<nav>
<ul>
<li class="browser-chrome">
<a href="https://www.google.com/chrome/browser/desktop/" target="_blank">
<div class="image">
<div class="text">Google Chrome</div>
</div>
</a>
</li>
<li class="browser-firefox">
<a href="https://www.mozilla.org/en-US/firefox/new/" target="_blank">
<div class="image">
<div class="text">Mozilla Firefox</div>
</div>
</a>
</li>
<li class="browser-safari">
<a href="https://support.apple.com/en-us/HT204416" target="_blank">
<div class="image">
<div class="text">Apple Safari</div>
</div>
</a>
</li>
<li class="browser-edge">
<a href="https://www.microsoft.com/en-us/windows/microsoft-edge" target="_blank">
<div class="image">
<div class="text">Microsoft Edge</div>
</div>
</a>
</li>
</ul>
</nav>
<p class="copyright">
<a href="https://codepen.io/specificity/pen/mmJBdL" target="_blank">Designed by Randy</a>
</p>
</div>
</body>
</html>