From a876654b2882b7a2272d151e1006d0b49beb9ee4 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 21 Mar 2018 13:05:41 -0400 Subject: [PATCH] Create index.html --- noie/index.html | 67 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 noie/index.html diff --git a/noie/index.html b/noie/index.html new file mode 100644 index 0000000..68d45d2 --- /dev/null +++ b/noie/index.html @@ -0,0 +1,67 @@ + + No IE + + + + + + + + + + + +




+ +
+

Where you redirected here from another website?

+

This means that you are most likely using Internet Explorer or Microsoft Edge.

+

+Web developers have to do a lot of hard work in order to create and maintain a website. There are many different web browsers being used and some of them require slight modifications to the website's code in order to get the website to look right or run properly. This is usually not a big problem for web developers. Just a little tweak or reordering of a function. There is one exception. Internet Explorer has a habit of not properly displaying or not properly running a website / webapp. To fix these problems, developers have to put in a lot of hard work and do a lot of debugging. This causes countless headaches and ocational swearing. +
+To save the devs some trouble, Please use a modern browser

+ +

Here are some good choices

+

Firefox or +Google Chrome

+
+

+
+ +
+

How do I implement this in my website?

+

This section is only for web developers +
+It's super simple! all you have to do is put the following code in the head section of your website!

+
+

+
+<!--[if IE]>
+<style>
+#isIE{
+    color:blue;
+}
+<style>
+<![endif]-->
+<style>
+@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
+#isIE{
+    color:blue;
+}
+}
+</style>
+<script language=javascript type="text/javascript">
+var ietest = document.getElementById("isIE");
+if(ietest.style.color=="blue"){
+    window.location = "http://retrylife.ca/noie";
+}
+</script>
+
+
+