-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbrowserIE.html
54 lines (42 loc) · 1.19 KB
/
browserIE.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS Template</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
article {
padding: 20px;
width: 40%;
background-color: #f1f1f1;
height: 200px;
}
/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 600px) {
nav,
article {
width: 100%;
height: auto;
text-align: center;
}
}
</style>
</head>
<body>
<section>
<center>
<article>
<h1>You seem to be using unsupported browser.</h1>
To get the most out of using the new PBe
please login to the new experience with a supported browser.
</article>
</center>
</section>
</body>
</html>