Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

mornlee http://www.neokeen.com/mornlee

« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS 

Search box

// description of your code here

<form action="/search" method="get"><input type="hidden" name="w" id="w" value="">
<table border="0" bgcolor="#FFFFFF" style="position:absolute;top:50;left:50%;margin-left:-120px;" cellpadding="0" cellspacing="0"  style="border-collapse: collapse"><tr><td>
<div id="bg" onmouseover="ov()" onmouseout="ot()">
<div id="bx" onmouseover="ovfm()" onmouseout="otfm()"><table border="1" cellpadding="0" cellspacing="0" bordercolorlight="#000000" bordercolordark="#000000" style="border-collapse: collapse" bordercolor="#111111"><tr><td><table border="0" cellpadding="0" cellspacing="0"><tr><td valign="bottom">
  <img src="/img/search.jpg" onclick="sh();" width="23" height="18"></td><td><input type="text" id="q" size="20" name="q" class="q" autocomplete="off" onclick="fs()" onfocus="fs()" onkeydown="rst()" style="border: 0;color: #000000;" value=""></td></tr></table></td></tr></table></div>
<div class="o" id="a1" style="visibility:hidden;" onmouseover="document.getElementById('a1').style.cursor='default'">

<div nowrap="nowrap" class="i" id="c1" onclick="si();" onMouseOver="this.className='ih';" onMouseOut="this.className='i'">
<span id="b1"><img width="10" height="13" src="/img/nodot.gif"></span>Artists similar to: </div>
<div nowrap="nowrap" class="i" id="c2" onclick="na();" onMouseOver="this.className='ih'" onMouseOut="this.className='i'">
<span id="b2"><img width="10" height="13"  src="/img/nodot.gif"></span>Artists named:</div>
<div nowrap="nowrap" class="i" id="c3" onclick="zi();" onMouseOver="this.className='ih'" onMouseOut="this.className='i'">
<span id="b3"><img width="10" height="13"  src="/img/nodot.gif"></span>Artists near zipcode: 
</div>
<div nowrap="nowrap" class="i" id="c4" onclick="ge();" onMouseOver="this.className='ih'" onMouseOut="this.className='i'">
<span id="b4"><img width="10" height="13"  src="/img/nodot.gif"></span>Artists in genre: 
</div>
<div nowrap="nowrap" class="i" id="c6" onclick="ez();" onMouseOver="this.className='ih'" onMouseOut="this.className='i'">
<span id="b6"><img width="10" height="13"  src="/img/nodot.gif"></span>Events near zipcode: 
</div>
<div nowrap="nowrap" class="i" id="c5" onclick="ws();" onMouseOver="this.className='ih'" onMouseOut="this.className='i'">
<span id="b5"><img width="10" height="13"  src="/img/nodot.gif"></span>Search whole site: 

</div>
</div>
</div>
</td><td><input type="submit" style="background:#006486; padding:0px; margin:0px; color:#fff; font-weight:bold; border:1px solid #006486;" value="Search"></td></tr></table>
</form>

group select box

// description of your code here

<p>
<label for="">Select</label>
<select name="">
<option selected label="none" value="none">Selected Option</option>

<optgroup label="Group 1">
<option label="label" value="value">Option 1</option>
<option label="label" value="value">Option 2</option>
<option label="label" value="value">Option 3</option>
</optgroup>

<optgroup label="Group 2">
<option label="label" value="value">Option 1</option>
<option label="label" value="value">Option 2</option>
<option label="label" value="value">Option 3</option>
</optgroup>

<optgroup label="Group 3">
<option label="label" value="value">Option 1</option>
<option label="label" value="value">Option 2</option>
<option label="label" value="value">Option 3</option>
</optgroup>
</select>
</p>

webshell dos html homepage

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>.com</title>
</head>
<style>
html { height:100%; }
body {
height:100%;
border:0px;
margin:0px;
background-color:#000000;
color:#CCCCCC;
font-family:FixedSys, Terminal, system, verdana, arial;
font-size:12px;
/*font-weight:bold;*/
}

a {
text-decoration:none;
color:#CCCCCC;
}

a:hover {
text-decoration:none;
color:#CCCCCC;
}

b {
font-weight:normal;
}

strong {
font-weight:normal;
}

.entryBox {
position:absolute;
bottom:0px;
left:-300px;
}
</style>


<script language="javascript" src="js/js.js"></script>

<body onLoad="setFocusToEntryBox();" onFocus="setFocusToEntryBox();">
<table cellpadding="0" cellspacing="0" border="0" height="100%" width="100%">
<tr>
<td height="100%" width="100%" onClick="setFocusToEntryBox();" valign="top">
<div style="width:750px;">
<div id="outputContainer">Welcome to 20-GOTO-10.com
Type help to begin.

</div>
<div style="position:relative;">
<span id="commandPrompt"></span>&nbsp;<span id="commandContainer"></span><img src="images/cursor.gif" align="absbottom" />
<input type="text" id="entryBox" class="entryBox" onKeyDown="keyCode=(event.which)? event.which: event.keyCode;if(keyCode==55 && event.shiftKey){alert('Sorry the use of \'&\' is not allowed.');return false;}" onKeyUp="handleKeyPress((event.which)? event.which: event.keyCode, this);">
</div>
</div>
</td>
</tr>
</table>
</body>
</html>

<script language="javascript">
document.getElementById('commandPrompt').innerHTML = 'C:\\>';

//Preload the image to avoid the scroll thingy
var oImg = new Image();
oImg.src = '/dos3/images/Me.gif';
</script>
« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS