<< Back
Hello!
Welcome to my page codes. Press CTRL + C to copy.
<html>
<head>
<script type='text/javascript'>    document.ondragstart = function () { return false; }; </script>
<base target='_blank'/>
<link rel="shortcut icon" href="http://media.tumblr.com/tumblr_m2hq96AoFv1qdlkyg.gif" />
</script>
<title>Cloud Chaser</title>
<script type="text/javascript">
// <![CDATA[
var speed=33; // lower number for faster
var drops=100; // number of 'drops'
var colour="#fff"; // colour of drops (generally grey!)
/***************************\
* Rainy Afternoon Effect *
* (c) 2011 mf2fm web-design *
* http://www.mf2fm.com/rv *
* DON'T EDIT BELOW THIS BOX *
\***************************/
var flks=new Array();
var flkx=new Array();
var flky=new Array();
var fldy=new Array();
var swide, shigh, boddie;
window.onload=function() { if (document.getElementById) {
var r1, r2;
boddie=document.createElement("div");
boddie.style.position="fixed";
boddie.style.top="0px";
boddie.style.left="0px";
boddie.style.width="1px";
boddie.style.height="1px";
boddie.style.overflow="visible";
boddie.style.backgroundColor="transparent";
document.body.appendChild(boddie);
set_width();
for (var i=0; i<drops; i++) {
flks[i]=createDiv(16, 2, "transparent");
r1=createDiv(6, 2, colour);
r1.style.top="10px";
r1.style.left="0px";
flks[i].appendChild(r1);
r2=createDiv(10, 2, colour);
r2.style.top="0px";
r2.style.left="0px";
if (navigator.appName=="Microsoft Internet Explorer") r2.style.filter="alpha(opacity=25)";
else r2.style.opacity=0.25;
flks[i].appendChild(r2);
flkx[i]=2*Math.floor(Math.random()*swide/2);
flky[i]=Math.floor(Math.random()*shigh);
fldy[i]=2+Math.floor(Math.random()*4);
flks[i].style.left=flkx[i]+"px";
flks[i].style.top=flky[i]+"px";
boddie.appendChild(flks[i]);
}
setInterval("cats_and_dogs()", speed);
}}
function createDiv(height, width, colour) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
window.onresize=set_width;
function set_width() {
var sw_min=999999;
var sh_min=999999;
if (document.documentElement && document.documentElement.clientWidth) {
sw_min=document.documentElement.clientWidth;
sh_min=document.documentElement.clientHeight;
}
if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
if (self.innerWidth<sw_min) sw_min=self.innerWidth;
if (self.innerHeight<sh_min) sh_min=self.innerHeight;
}
if (document.body.clientWidth) {
if (document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
if (document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
}
if (sw_min==999999 || sh_min==999999) {
sw_min=800;
sh_min=600;
}
swide=sw_min-2;
shigh=sh_min;
}
function cats_and_dogs(c) {
var i, x, o=0;
for (i=0; i<drops; i++) {
flky[i]+=fldy[i];
if (flky[i]>=shigh-16) {
flky[i]=-16;
fldy[i]=2+Math.floor(Math.random()*4);
flkx[i]=2*Math.floor(Math.random()*swide/2);
flks[i].style.left=flkx[i]+"px";
}
flks[i].style.top=flky[i]+"px";
}
}
// ]]>
</script>
<script type="text/javascript">
function changeNavigation(id)
{document.getElementById('main').innerHTML=document.getElementById(id).innerHTML}
</script>
</head>
<div id="disable" class="click" onMouseover="highlightie5(event)" onMouseout="lowlightie5(event)" onClick="jumptoie5(event)" display:none>
I'm So Sorry, But Right Click Is Disabled In This Blog.
</div>
<script language="JavaScript1.2">
//set this variable to 1 if you wish the URLs of the highlighted menu to be displayed in the status bar
var display_url=0
var ie5=document.all&&document.getElementById
var ns6=document.getElementById&&!document.all
if (ie5||ns6)
var menuobj=document.getElementById("disable")
function showmenuie5(e){
//Find out how close the mouse is to the corner of the window
var rightedge=ie5? document.body.clientWidth-event.clientX : window.innerWidth-e.clientX
var bottomedge=ie5? document.body.clientHeight-event.clientY : window.innerHeight-e.clientY
//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<menuobj.offsetWidth)
//move the horizontal position of the menu to the left by it's width
menuobj.style.left=ie5? document.body.scrollLeft+event.clientX-menuobj.offsetWidth : window.pageXOffset+e.clientX-menuobj.offsetWidth
else
//position the horizontal position of the menu where the mouse was clicked
menuobj.style.left=ie5? document.body.scrollLeft+event.clientX : window.pageXOffset+e.clientX
//same concept with the vertical position
if (bottomedge<menuobj.offsetHeight)
menuobj.style.top=ie5? document.body.scrollTop+event.clientY-menuobj.offsetHeight : window.pageYOffset+e.clientY-menuobj.offsetHeight
else
menuobj.style.top=ie5? document.body.scrollTop+event.clientY : window.pageYOffset+e.clientY
menuobj.style.visibility="visible"
return false
}
function hidemenuie5(e){
menuobj.style.visibility="hidden"
}
function highlightie5(e){
var firingobj=ie5? event.srcElement : e.target
if (firingobj.className=="menuitems"||ns6&&firingobj.parentNode.className=="menuitems"){
if (ns6&&firingobj.parentNode.className=="menuitems") firingobj=firingobj.parentNode //up one node
firingobj.style.backgroundColor="highlight"
firingobj.style.color="E6E4E5"
if (display_url==1)
window.status=event.srcElement.url
}
}
function lowlightie5(e){
var firingobj=ie5? event.srcElement : e.target
if (firingobj.className=="menuitems"||ns6&&firingobj.parentNode.className=="menuitems"){
if (ns6&&firingobj.parentNode.className=="menuitems") firingobj=firingobj.parentNode //up one node
firingobj.style.backgroundColor=""
firingobj.style.color="826A92"
window.status=''
}
}
function jumptoie5(e){
var firingobj=ie5? event.srcElement : e.target
if (firingobj.className=="menuitems"||ns6&&firingobj.parentNode.className=="menuitems"){
if (ns6&&firingobj.parentNode.className=="menuitems") firingobj=firingobj.parentNode
if (firingobj.getAttribute("target"))
window.open(firingobj.getAttribute("url"),firingobj.getAttribute("target"))
else
window.location=firingobj.getAttribute("url")
}
}
if (ie5||ns6){
menuobj.style.display=''
document.oncontextmenu=showmenuie5
document.onclick=hidemenuie5
}
</script>
<style type="text/css">
#navbar-iframe { display: none; }
body {
background:url(http://i277.photobucket.com/albums/kk70/safiena_album/Art%20by%20safiena/b5.png);
background-attachment: fixed;
color: #666;
line-height: 14px;
text-align: justify;
}
table {
background:#fff;
font: 14px Diamond Girl;
letter-spacing: 1px;
color: 000000;
line-height: 20px;
padding:5px;
border:1px Powder Blue;
width:900;}
.hmraysf{
margin-top:-20px;
margin-right:1px;
width:900px;
border-top-left-radius:0px;
border-top-right-radius:0px;
border: 1px solid #e9edfa;
background:#FFFFFF;
text-align:center;
padding-bottom:15px;
padding-top:15px;
display:inline-block;
}
.navi{
cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur816.cur), progress;
border:1px solid #e9edfa; text-transform:uppercase; background:#fff; text-decoration:none; color: #666; padding: 6px; font: 8px yow; margin-left: 5px; margin-right: 5px; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; text-decoration:none; box-shadow:inset 0px 0px 0px #d4dcf5,inset 0px 0px 0px #d4dcf5; display: inline-block; width: 65px;}
.navi:hover { -webkit-transition-duration: 0.5s; box-shadow:inset 0px 14px 0px #abbaeb,inset 0px -14px 0px #abbaeb; color: #fff;}
@font-face { font-family:yow !important; src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf') !important; }
a:link,a:visited{
cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur816.cur), progress;
text-decoration:none;
color:#bfcbf1;-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
}
a:hover{
color:#abbaec;
background:transparent;
}
::selection {
background: #d4dcf5;
color: #000;
}
::-moz-selection {
background: #d4dcf5;
color: #000;
}
u {
text-decoration:none;
border-bottom: 2px solid #bfcbf0;
-webkit-transition: 1s;
}
b {
cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur816.cur), progress;
color:#333;
-webkit-transition-duration: 1.5s;
}
b:hover {
color: #bfcbf0;
-webkit-transition-duration: 1.5s;
}
blockquote {
background:#E3F7FF;
color: #ffffff;
border-radius:5px;
border:1px solid #D0F5F7;
border-right:15px solid #D0F5F7;
color:#000000;
padding:4px;
-webkit-transition: 2s;
}
blockquote:hover {
background:#FFF2F5;
color: #666666;
border:1px solid #FFDBE2;
border-right:1px solid #D0F5F7;
border-left:15px solid #FFDBE2;
-webkit-transition: 2s;
}
.blogger-labels {
font-family: Diamond Girl;
border-bottom: 2px solid #bfcbf0;
border-top: 2px solid #bfcbf0;
font-size: 13px;
text-align:left;
margin-bottom: 1px;
margin-top: 1px;
}
.comment-timestamp {
margin:0 0 .5em;
padding:0 0 .75em 20px;
color:#666;
}
.deleted-comment {
font-style:italic;
color:gray;
}
#comments {
margin:5;
border-width:0 1px 1px;
padding:20px 0 15px 0;
}
.comment-icon blogger-comment-icon{display:none}
#comments-block {
margin:2px ;
}
.comment-data {
background:url("http://media.tumblr.com/tumblr_m7eexoDYtN1qdlkyg.gif") no-repeat 2px .3em;
margin-top:5px !important;background-size:15px;
padding:0 0 0 20px;
color:#666;
}
span.comment-icon{display:none}
.comment-poster {
font-weight:bold;
}
.comment-body {
margin:0px;
}
.comment-body p {
background:#FFFFFF;
border:3px solid #FBF8E0;
margin:0em;
padding:5px;
color:#808080;
}
.pocetit {
padding:5px 5px 5px 30px;
background:url(http://media.tumblr.com/tumblr_meb6bukM9P1qdlkyg.gif) left center;
background-repeat:no-repeat;
font:18px Xiomara;
color: #999;
border-bottom: 2px solid #eee;
text-align:left;
}
@font-face {font-family: 'Calibri'; src:url(http://static.tumblr.com/0hkoulm/2VEmdu3je/blackout_midnight.ttf);}
.pocetit:first-letter {
font:30px Xiomara;
text-align: center;
color: #abbaec;
}
.sidetitle{background:#e9f1fa; font: 12px Diamond Girl; padding:2px; padding-left:20px; text-transform: uppercase; text-align:right;}
.icon{color:#e9f1fa; font:20px Diamond Girl; text-align:right; padding-right:30px; margin-top: -10px;}
.note2{
text-transform:uppercase;
color:#000;
margin-bottom: 8px;
font:10px Diamond Girl;
line-height: 14px;
padding: 3px;
}
.sidenav2 a:link, .sidenav2 a:active, .sidenav2 a:visited
{
cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur816.cur), progress;
width:96px;
background:#abbaec;
color:000000;
display: inline-block;
text-decoration:none;
text-align:center;
font:10px Diamond Girl;
font-weight:bold;
padding:1px;
margin-top:2px;
-webkit-transition-property:color, text;
-webkit-transition-duration: .2s;
-moz-transition-duration: .2s;
-webkit-transition-timing-function: linear, ease-in;
border-bottom:1px solid #BFCFFE;
}
.sidenav2 a:hover
{
-webkit-transition-duration: .2s;
-moz-transition-duration: .2s;
background:#fff;
color:#abbaeb;
border-bottom:1px solid #BFCFFE;
}
.umi {
background:#e9f1fa; padding:2px; padding-left:20px; text-transform: uppercase;
font:11px Diamond Girl;
color:#809ffe;
}
@font-face {
font-family: "tinytots";
src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');
}
::-webkit-scrollbar {
width:8px;
height:8px;
}
::-webkit-scrollbar-track-piece  {
background-color: #ccd8fe;
border: 3px solid #FFFFFF;
}
::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal {
background:#ccd8fe;
border: 1px solid #ccd8fe;
}
.newer {
cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur816.cur), progress;
width:50px;
padding:4px;
margin:2px;
font:16px Diamond Girl;
text-align:center;
Text-decoration:none;
color:#bfcffe;
text-transform:uppercase;
}
@font-face{
font-family:tutano;
src:url(http://static.tumblr.com/dep4vzc/82Km8jmz4/tutano_cc_v2.ttf);
}
.older {
cursor: url(http://cur.cursors-4u.net/cursors/cur-9/cur816.cur), progress;
width:50px;
padding:4px;
margin:2px;
font:16px Diamond Girl;
text-align:center;
Text-decoration:none;
color:#bfcffe;
text-transform:uppercase;
}
.mayra{
margin-top:-0px;
margin-right:0px;
width:900px;
border-top-left-radius:0px;
border-top-right-radius:0px;
border: 1px solid Powder Blue;
background:#ffffff);
text-align:center;
padding-bottom:15px;
padding-top:15px;
display:inline-block;
margin-bottom:15px;
}
#scrollToTop:link, #scrollToTop:visited {
cursor: url(http://static.tumblr.com/z7e2cpq/PtZlllqc9/ponteiro_azul.png), progress;
color: transparent;
background-color: transparent;
display: none;
position: fixed;
bottom: 5px;
right: 5px;
}
.click{
       position:absolute;
       width:80px;
       border:1px dashed #58ACFA;
       background: url(http://i.imgur.com/6LIHY.png);
       line-height:12px;
       color: #666;
       font-size:8pt;
       font-family:Tahoma;
       padding: 5px;
       z-index:50;
       visibility:hidden;
       }
li {
list-style-image:url(http://media.tumblr.com/tumblr_mdpf79BSVK1qdlkyg.gif) ;
}
</style>
<body onkeydown='return false;'>
<style type="text/css">body, a, a:link{cursor:url(http://cur.cursors-4u.net/cursors/cur-9/cur816.cur), default;} a:hover {cursor:url(http://static.tumblr.com/z7e2cpq/PtZlllqc9/ponteiro_azul.png),wait;}</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="http://static.tumblr.com/ikeq9mi/DfYl6o46t/scrolltotop.min.js"></script>
<a href="javascript:;" id="scrollToTop"><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguFxbLpy4H345MHk9KDLqY4orUT2BH4jZcEJvv5GCXeV7ON5DsMglpq8hLJbwinar16YOW4AhZFwqqN1P8Tt3PSelTZ3iCBCk1boTTR9dH0wKi9NzHKNmPG21xofWvLpEuSoS2vB5-SSg/s1600/top+awan+1.png" border="0"></a>
</head>
<center>
<div style="margin-top:15px;">
<div style="display:inline-block;width:900px;padding:5px;border-radius:0px 0px 0px 0px;border:2px solid PowderBlue;background:#FFFFFF;">
<div style="display:inline-block;width:900px;padding-top:300px;border-radius:0px 0px 0px 0px;border:0px dotted #FBF8E0;border-bottom:none;background-repeat:repeat;background: url(http://i.imgur.com/sYpdvvP.png);"></div><br>
</center>
<center>
<div style="margin-top:-1px;margin-bottom:-3px;background:none;border-left:20px solid #bfcbf1;border-right:20px solid #bfcbf1;width:600px;height:50px;display:inline-block;-webkit-box-shadow: 0 1px 5px rgba(191,191,191,0.88);-moz-box-shadow: 0 1px 5px rgba(191,191,191,0.88);box-shadow: 0 1px 5px rgba(191,191,191,0.88);">
</div>
<div align="center">
<center><div class="hmraysf">
<a class="navi" onClick="document.getElementById('main').innerHTML=document.getElementById('k').innerHTML" >About</a>
<a class="navi" onClick="document.getElementById('main').innerHTML=document.getElementById('s').innerHTML" >Entries</a>
<a class="navi" onClick="document.getElementById('main').innerHTML=document.getElementById('c').innerHTML" >Chingu</a>
<a class="navi" onClick="document.getElementById('main').innerHTML=document.getElementById('o').innerHTML" >Back</a>
</center>
<center>
<table border="0" cellspacing="0" cellpadding="20">
</center>
<tr>
<td valign="top" width="150">
<div class="pocetit">Meet The Owner</div>
<div class="sidetitle">Leg's Note</div>
<div class="icon">◥</div>
<center>
<div style="background:url(http://i.imgur.com/qrw9W.png) repeat; border:1px solid #EEE;padding:5px;width:200px;">
<img style="width:200px;height:140px;" src="http://i.imgur.com/i0j484N.gif">
<div class="sidenav2">
<a href="http://blogger.com/home">Home</a>
<a href="http://www.blogger.com/follow-blog.g?blogID=Your Blog ID">+Folow</a>
</center>
</div>
<div class="note2"><center>
Dear chingu, You can call Me <b>Salsa</b>. This is My 2nd skins. I hope you all like it. By the way, Thank you for stepping by. Have Fun In My blog.</center>
<center>
</center>
</div>
<div class="pocetit">Tagboard</div>
<div class="sidetitle">Chat With Me Here!</div>
<div class="icon">◥</div><center>
<img src="http://i.imgur.com/oiEv0tP.png"><br>
Put Your cbox code here!</center></center>
<script>togglecbox();</script>
<div class="pocetit">Lastdate</div>
<div class="sidetitle">Story before</div>
<div class="icon">◥</div>
<div style="text-align:left;height:100px; overflow-x:hidden; overflow-y:scroll;">
<bloggerpreviousitems>
<li><a href="<$BlogItemPermalinkURL$>">
<$BlogPreviousItemTitle$></li></a>
</BloggerPreviousItems>
</div>
<div class="pocetit">Credit</div>
<div class="sidetitle">my leader here</div>
<div class="icon">◥</div>
<div class="note2">
© 2013 - Full Template by <a href="http://www.anugerahsalsa.co.vu/">Anugerah</a><a href="http://www.blogskins.com/me/anugerahsalsa"> Salsa</a>.
Basecode by <a href="http://fatinhalid.blogspot.com/">Atin</a>.
Edit by Me. Copycats not Allowed Here!!!
</div>
<td id="main" valign="top" style="width:526px; padding-left:13px; border-left:1px solid #e9edfa; padding-right:13px; ">
<Blogger>
<div class="pocetit"><$BlogItemTitle$></div>
<div class="umi" style="float:center;text-align:right;"><BlogDateHeader><$BlogDateHeaderDate$></BlogDateHeader> - <a href="<$BlogItemPermalinkURL$>">Permalink</a> | <a href="<$BlogItemCommentCreate$>"<$BlogItemCommentFormOnClick$>> <$BlogItemCommentCount$> Diamond(s)</a></BlogItemCommentsEnabled>
</div>
<div class="icon">◥</div>
<br>
<$blogitembody$>
</p>
<br>
<itempage>
<div id="comments" style="margin-top:5px; overflow:auto; width:ancho;height:400px;">
<blogitemcommentsenabled><a name="comments"></a>
<dl id="comments-block">
<div style="width:570px; padding:5px;margin-top:20px;border:4px solid #fff;6px;background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhEcpLeT4xv6MKmlS-Iqv_Lm0N40bBAUD6RGCTYk6pNvb58CqjNLZoe0sVRhefdTCxl8671YCH9p5C4SSpG6Lc5sg-cgT5yBOZIXuWWhBVu4vBEHUOb59OzLqdFwkPQaD9dk3W-CQGPrw/s1600/blue.jpg); box-shadow:0 0 3px #ddd;">
<$CommentPager$>
<blogitemcomments>
<dt class="comment-data" id="<$BlogCommentAnchorName$>"><a name="<$BlogCommentAnchorName$>"></a>
<$I18NCommentAuthorSaid$></dt>
<dd class="comment-body">
<p>
<$BlogCommentBody$></p>
<$BlogCommentDeleteIcon$>
</dd>
</BlogItemComments>
<$CommentPager$>
</dl>
<p class="comment-timestamp">
<$BlogItemCreate$>
</p>
</ItemPage>
</Blogger>
<div style="float:left;"><a class="newer" href=><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfXmptEWYrevoMuCyWs3ua69ybVagJdJtFs3bg6aZZheNXV4ZAfrMH6Wu-d7Oai4E0CSI3-KtEQMosu5FRzxHm2GTKA_t-uNBdLdGr-8kXbx1GoCKGCb7SBQFrBAbJr-Q7wLwg9dJeifA/s1600/blue+copy.png"></a></NewerPosts></div><div style="float:right"><a class="older" href=<$OlderPosts$>><img src="http://i237.photobucket.com/albums/ff19/rebeccacream/Sozai%20and%20Website/go5.png"></a>
</div>
</td>
<td id="o" style="display: none;">
<Blogger>
<div class="pocetit"><$BlogItemTitle$></div><div class="umi" style="float:center;text-align:right;"><BlogDateHeader><$BlogDateHeaderDate$></BlogDateHeader> - <a href="<$BlogItemPermalinkURL$>">Permalink</a> | <a href="<$BlogItemCommentCreate$>"<$BlogItemCommentFormOnClick$>> <$BlogItemCommentCount$> Comments</a></BlogItemCommentsEnabled></div>
<div class="icon">◥</div>
<br><$blogitembody$>
<br>
<itempage>
<div id="comments" style="margin-top:5px; overflow:auto; width:ancho;height:400px;">
<blogitemcommentsenabled><a name="comments"></a>
<dl id="comments-block">
<div style="width:570px; padding:5px;margin-top:20px;border:4px solid #fff;6px;background:url(http://i.imgur.com/0kXkdnM.png); box-shadow:0 0 3px #ddd;">
<$CommentPager$>
<blogitemcomments>
<dt class="comment-data" id="<$BlogCommentAnchorName$>"><a name="<$BlogCommentAnchorName$>"></a>
<$I18NCommentAuthorSaid$></dt>
<dd class="comment-body">
<p>
<$BlogCommentBody$></p>
<$BlogCommentDeleteIcon$>
</dd>
</BlogItemComments>
<$CommentPager$>
</dl>
<p class="comment-timestamp">
<$BlogItemCreate$>
</p>
</ItemPage>
</Blogger>
<div style="float:left;"><a class="newer" href=><img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfXmptEWYrevoMuCyWs3ua69ybVagJdJtFs3bg6aZZheNXV4ZAfrMH6Wu-d7Oai4E0CSI3-KtEQMosu5FRzxHm2GTKA_t-uNBdLdGr-8kXbx1GoCKGCb7SBQFrBAbJr-Q7wLwg9dJeifA/s1600/blue+copy.png"></a></NewerPosts></div><div style="float:right"><a class="older" href=<$OlderPosts$>><img src="http://i237.photobucket.com/albums/ff19/rebeccacream/Sozai%20and%20Website/go5.png"></a> </div></div>
</div>
</div>
</td>
<td id="k" style="display: none;">
<div class="pocetit">I'm the boss!</div><br>
<center>
<img style="padding: 2px; border: 1px solid #e9edfa;"src="http://i.imgur.com/p7GEtlI.gif" width="500" height="300"></center><br>
<div class="note2">
 Full Name :
<br>
 Nickname :
<br>
 Born :
<br>
 Age :
<br>
 Address :
<br>
 City :
<br>
 Country :
<br>
 Sex :
<br>
 Height :
<br>
 Widht :
<br>
 Hobby's :
<br>
 Fav Boyband :
<br>
 Fandom :
<br>
 Fav colour :
<br /><br /><br /><br />
</div>
</td>
<td id="s" style="display: none;">
<div class="pocetit">My Articles</div><br>
<center>
<img style="padding: 2px; border: 1px solid #e9edfa;"src="http://i.imgur.com/rZlWcZV.gif" width="500" height="250"></center>
<div dir="ltr" style="text-align: left;" trbidi="on">
<style>
a.chan {
background:url(http://media.tumblr.com/tumblr_mdpf79BSVK1qdlkyg.gif);
background-repeat:no-repeat;
background-size:16px;
padding-left:19px;
color:#666;
display:inline-block;
font: 15px Diamond Girl;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
width:280px;
line-height:18px;
}
a.chan:hover{
background:url(http://media.tumblr.com/tumblr_mdpf51Ryrn1qdlkyg.gif);
background-repeat:no-repeat;
background-size:16px;
color: #000;
}
</style>
<a class="chan" href="LINK">Your tutobies</a>
<a class="chan" href="LINK">Your tutobies</a>
<a class="chan" href="LINK">Your tutobies</a>
<a class="chan" href="LINK">Your tutobies</a>
<a class="chan" href="LINK">Your tutobies</a>
<a class="chan" href="LINK">Your tutobies</a>
<a class="chan" href="LINK">Your tutobies</a>
<a class="chan" href="LINK">Your tutobies</a>
<br><br>
<br>
</div>
</td>
<td id="c" style="display: none;">
<div class="pocetit">My Chingu forever!</div><br>
<center>
<img style="padding: 2px; border: 1px solid #e9edfa;"src="http://i.imgur.com/YRR0NFb.gif" width="500" height="300"></center><br>
<center>
<div class="sidenav2">
<a href="http://blogger.com/home">Chingu</a>
<a href="http://blogger.com/home">Chingu</a>
<a href="http://blogger.com/home">Chingu</a>
<a href="http://blogger.com/home">Chingu</a>
<a href="http://blogger.com/home">Chingu</a>
<a href="http://blogger.com/home">Chingu</a>
<a href="http://blogger.com/home">Chingu</a>
<a href="http://blogger.com/home">Chingu</a>
<a href="http://blogger.com/home">Chingu</a>
<a href="http://blogger.com/home">Chingu</a>
</center>
<br>
</div>
</td>
</table>
<div class="mayra">
</div>
</body>
</html>
Arrien