Last active
September 27, 2015 12:57
-
-
Save GlassGhost/1272801 to your computer and use it in GitHub Desktop.
HTML Clipboard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html><html style="width:100%; height:100%; background:url(http://imageshack.us/a/img715/2300/bootanimationf.gif) center center no-repeat; background-color:#000000;color:#ffffff;"> | |
<head><meta http-equiv="content-type" content="text/html;charset=UTF-8" /> | |
<title>HTML Clipboard</title> | |
<!--There's tag for documentation of your xml/html--> | |
<!--------------------------Scripts and Styles by URL--------------------------> | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
<script type="text/javascript" src="./default.js"></script> | |
<link rel="stylesheet" type="text/css" href="./default.css"/> | |
<!-------------------------Built-In Scripts and Styles-------------------------> | |
<script language=javascript type='text/javascript'> | |
</script> | |
<style type="text/css"> | |
table, td, th {border:white; border-collapse:collapse;} | |
</style> | |
</head><!---------------------------><body><!----------------------------------> | |
<h1>There's a tag for that!</h1> | |
<hr/> | |
<br/> | |
<p>There's a tag for a paragraph, with a <a href="http://www.w3.org/TR/html4/">tag for a link</a> nested inside it, and <a href="#Table1">a tag for a link to another section of the current page.</a></p> | |
<h3>A short list of "list-style-type"s</h3> | |
<ol list-style-type="upper-roman"> | |
<li>decimal</li> | |
<li>none</li> | |
<li>disc</li> | |
<li>lower-alpha</li> | |
<li>upper-alpha</li> | |
<li>lower-roman</li> | |
<li>upper-roman</li> | |
<li>and much more</li> | |
</ol> | |
<a name="section1">A Section</a> | |
<a name="Table1"><table><tr> | |
<td>A</td> | |
<td>Tag</td> | |
</tr><tr colspan="2"> | |
<td rowspan="2">for</td> | |
</tr><tr> | |
<td>a</td> | |
<td>Table</td> | |
</tr></table></a> | |
<code><![CDATA[Anything but the ]]]]><![CDATA[> string can be inside of a cdata string without affecting the html, even a tag!!]]></code> | |
<a name="section2"></a> | |
<p></p> | |
<a href=""></a> | |
<ol list-style-type="upper-roman"> | |
<li></li> | |
</ol> | |
<ul> | |
<li></li> | |
</ul> | |
<a name="Table2"><table><tr> | |
<td></td> | |
</tr><tr> | |
<td rowspan="2"></td> | |
</tr><tr colspan="2"> | |
</tr></table></a> | |
</body></html><!--------------------------------------------------END OF FILE--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html style="width:100%; height:100%; background:url(http://imageshack.us/a/img715/2300/bootanimationf.gif) center center no-repeat; background-color:#000000;"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment