Advertisement
QuantumA

Denied Access Page [HTML]

Oct 27th, 2015
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.25 KB | None | 0 0
  1. ***********************************
  2.  
  3. Pretty cool *denied access* or no permission page.
  4.  
  5. By: QUANTUMA
  6.  
  7. ***********************************
  8.  
  9. **HTML**
  10.  
  11. <!doctype html>
  12.  
  13. <head>
  14. <title>Welcome to my site!</title>
  15. <link rel="stylesheet" type="text/css" href="style.css" />
  16. </head>
  17.  
  18. <body>
  19.  
  20. <h1>You ai'nt got no access fool!</h1>
  21.  
  22. <br />
  23. <br />
  24.  
  25. <h1>Good Luck Tryin' wont work m9</h1>
  26.  
  27. <div class="footer">
  28. <div class="box">
  29.  
  30. <h2>Thanks for your cooperation!</h2>
  31.  
  32. </div>
  33. </div>
  34.    
  35. </body>
  36. </html>
  37.  
  38. **CSS**
  39.  
  40. body {
  41.  background-image: url("bg.gif");
  42.  font-family: "Droid Sans Mono",monospace,sans-serif;
  43. }
  44. .content {
  45.  position:absolute;
  46.  left:50%;
  47.  top:50%;
  48.  margin:-300px 0 0 -225px;
  49.  padding: 10px 30px 0px;
  50. }
  51. small {
  52.  color: #909090;
  53. }
  54. small a {
  55.  color: #C9C9C9;
  56.  text-decoration: none;
  57. }
  58. h1 {
  59.  text-align: center;
  60.  line-height: 1.5;
  61.  padding-bottom: 6px;
  62.  color: #00FF00;
  63. }
  64. p {
  65.  line-height: 1;
  66. }
  67. table a {
  68.  color: #c00;
  69.  text-decoration: none;
  70. }
  71.  
  72. li {
  73.     display: inline;
  74. }
  75.  
  76. h2 {
  77.  text-align: center;
  78.  line-height: 1.5;
  79.  padding-bottom: 6px;
  80.  color: #FF0000;
  81. }
  82.  
  83. #footer {
  84.     width:100%;
  85.     height:100px;
  86.     position:absolute;
  87.     bottom:0;
  88.     left:0;
  89. }
  90.  
  91. .box {
  92.     width:800px;
  93.     margin:0 auto;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement