Skip to content

Commit

Permalink
Slightly altered first version of 2011
Browse files Browse the repository at this point in the history
  • Loading branch information
villermen committed Jul 4, 2017
0 parents commit 0fad98f
Show file tree
Hide file tree
Showing 7 changed files with 83 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/.idea/
Binary file added buttonsprites.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added favicon.ico
Binary file not shown.
69 changes: 69 additions & 0 deletions index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Homepage</title>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<meta name="description" content="villermen's homepage" />
<meta name="keywords" content="villermen homepage villermen.com filebrowser vapor minecraft server" />
<meta name="author" content="Villermen" />
<link rel="shortcut icon" href="favicon.ico" />
<style type="text/css">
body {
background-color: black;
color: #430700;
text-align: center;
margin-top: 50px;
font: 14pt impact;
white-space: nowrap;
}
.bigbutton {
width: 349px;
height: 349px;
display: inline-block;
background-image: url(buttonsprites.png);
}
#button_projects {
background-position: 0 0;
}
#button_projects:hover {
background-position: 0 349px;
}
#button_minecraft {
background-position: 1050px 0;
}
#button_minecraft:hover {
background-position: 1050px 349px;
}
#button_tools {
background-position: 700px 0;
}
#button_tools:hover {
background-position: 700px 349px;
}
#button_filebrowser {
background-position: 350px 0;
}
#button_filebrowser:hover {
background-position: 350px 349px;
}
#button_noie {
display: block;
width: 50px;
height: 50px;
background: url(noiebuttonsprites.png) 0 0;
margin: auto;
}
#button_noie:hover {
background-position: 50px 0;
}
</style>
</head>
<body>
<a class='bigbutton' id='button_projects' href='/'></a><a class='bigbutton' id='button_minecraft' href='/minecraft'></a><br />
<?php
if (preg_match("~MSIE|Internet Explorer~i",$_SERVER["HTTP_USER_AGENT"]))
echo "<a id='button_noie' href='noie' /><br />";
?>
<a class='bigbutton' id='button_tools' href='/browser'></a><a class='bigbutton' id='button_filebrowser' href='/browser'></a>
</body>
</html>
Binary file added noie/iesucks.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions noie/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<h1>Use of Internet Explorer</h1>

Internet Explorer ignores all internet standards regarding page styling, and thus I can't be asked to adjust my pages over and over again to comply with this crappy browser.<br />
Everything on this website is designed and tested on Google Chrome, and will most likely work in all browsers but Internet Explorer.<br />
If you want to save developers like me a ton of work, <b>stop using Internet Explorer now</b>.<br />
Use a real browser like <a href="https://www.google.com/chrome">Google Chrome</a> or <a href="http://www.mozilla.org/en-US/firefox/new/">Firefox</a> if you want to view any webpages as they are intended to be viewed.<br />
<br />
If you are not convinced yet, just <a href="http://lmgtfy.com/?q=Why+is+Internet+Explorer+a+bad+browser%3F">google it</a>.<br />
Also, stay away from Bing, it's evil.<br />
<br />
Gr.Villermen<br />
<br />
<img src="iesucks.jpg" alt="Stop IE" />
Binary file added noiebuttonsprites.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0fad98f

Please sign in to comment.