Author Topic: HTML, CSS, JQuery, JavaScript, PHP Megathread  (Read 753 times)

Post your most amazed HTML, CSS, Or jQuery code on this megathread edit: AND JS

Quote
<img src="images/logo.png" alt="Smiley face" align="middle" align="top">
<body background="webground.png" bgproperties="fixed">

<!DOCTYPE html>
<html>
<body>
 

<a href=http://atailsss.byethost14.com/atgame/atgforum>

<img border="0" alt="" src="images/forumbutton.png">
</a>
</p>

</body>
</html>

<!DOCTYPE html>
<html>

<head>
<style>
  body {
  background-image: url("images/webground.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
}


</style>
</head>
</html>
<iframe src="http://lightirc.com/start/?host=irc.lightirc.com&autojoin=%23atgame&showNickSelection=true&styleURL=css%2Fgreen.css&nick=Guest" style="width:800px; height:400px;"></iframe>
Theme by ATails of atgame.
List your HTML, CSS Code here so i may PUT it in the thread.
« Last Edit: January 24, 2015, 07:23:55 PM by releasetheblocks2 »

yeah my html once got so amazed he fell unconscious

atgame Website Code
Code: [Select]
                                                                                            <img src="images/logo.png" alt="Smiley face" align="middle" align="top">
<body background="webground.png" bgproperties="fixed">

<!DOCTYPE html>
<html>
<body>
 

<a href=http://atailsss.byethost14.com/atgame/atgforum>

<img border="0" alt="" src="images/forumbutton.png">
</a>
</p>

</body>
</html>

<!DOCTYPE html>
<html>

<head>
<style>
  body {
  background-image: url("images/webground.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
}


</style>
</head>
</html>
<iframe src="http://lightirc.com/start/?host=irc.lightirc.com&autojoin=%23atgame&showNickSelection=true&styleURL=css%2Fgreen.css&nick=Guest" style="width:800px; height:400px;"></iframe>
Theme by ATails of atgame.
Anyones able to use this code, and change the bg for the website! ill be changing the code anyway, so this code is Free.
« Last Edit: January 24, 2015, 06:01:21 PM by releasetheblocks2 »




Keep in mind the Java and Javascript are NOT the same thing.


the two snipplets of "code" are so bad

edit: add php dork

edit: add php dork

Probably the worst caching method ever.
Code: (php) [Select]
<?php
// Cache content / ping responses to prevent overload of requests.
include("filter.php"); // filterIP()
class Cache
{
private $cacheFolder "../cache/";
private $pingSuffix "_ping.txt";
private $contentSuffix "_content.txt";

function getPing($url$port$timeout$hours)
{
$errorNum "";
$errorStr "";

if(filterURL($url))
{
$parse parse_url($url);
$url $parse['host'];
}
$file $this->cacheFolder $url $this->pingSuffix;
//get time and check if cache exists or expired
$current_time time();
$expire_time $hours 60 60;
$file_time = @filemtime($file);

if(file_exists($file) && ($current_time $expire_time $file_time)) {
return file_get_contents($file);
}

$ping = @fsockopen($url$port$errorNum$errorStr$timeout);
if($ping)
{
file_put_contents($file"OK");
return file_get_contents($file);
}
else
{
file_put_contents($file"DOWN");
return file_get_contents($file);
}
}
function getContent($url$hours)
{
//todo?
}
}
?>



Code: [Select]
<html>
<title>hacking peeps yo</title>
<code>
<name>ATails</name>
<hack>mainframe.hack(ATails)</hack>
<message>hacking in progress</message>
<done hacking>
<message color=spicy hot red>user has been hacked,,,,,,....,</message>
</done hacking>
</code>
</html>

sry bud ur getting hacked bro

Code: [Select]
main( ) {
        printf("hello, world");
}