nope, you don’t have to make a new page. just do this
<a href=”http://YOURURL.TUMBLR.COM/tagged/THE TAG YOU PLACED IN YOUR POST” >YOUR DESIRED CATEGORY LABEL</a>
e.g.
<a href=”http://mybiasedheart.tumblr.com/tagged/love” >Love life</a>
a
did i help you? :)
<img src=”image.gif” style=”filter:alpha(opacity=50); opacity: 0.5;” alt=”” />
just add style=”filter:alpha(opacity=50. Internet explorer reads filter:alpha(opacity=#), # ranging from 0 to 100 and standing for percent opacity. Firefox reads opacity: #, the number ranging from 0 to 1.
paste this code below {title}</a> tag
<iframe frameborder=”0” border=”0” scrolling=”no” width=”400” height=”190” allowtransparency=”true” src=”http://www.tumblr.com/ask_form/CHANGEYOUR TUMBLR D.tumblr.com” style=”background-color:transparent; overflow:hidden;”></iframe>
just pm me if you don’t get it (:
Here’s just a list of simple beginner HTML. If you want to learn more in depth tricks and scripts, you can visit the other tutorials in the site.
Always put <html> and <head> at the very beginning of your blank page. Always end your page with </body></html>. The basic parts to an html document is the <head> and the <body>. The body is where all your text and content go. So a regular html document would look like this:
<html><head><title>Your Page’s Title</title></head>
<body>Hi, this is my page content! Text text.</body></html>
- Link: To make a link, use the a href tag. This:
<a href=”http://mybiasedheart.tumblr.com” target=”_blank”>Neskaya.Net</a> would display mybiasedheart.tumblr.com. target=”blank” is optional and you can remove that part if you wish; it makes the link open in a new browser window.
- Image To put an image on a page, use the img tag. This:
<img src=”http://neskaya.net/images/button.gif”> would display

- Color To change your font color; <font color=”blue”>hi!</font> would display hi!
- Size To change font size; <font size=”3”>hi!</font> would display hi! Font sizes range from 1 to 10, 10 being the largest.
- Font To change fonts, <font face=”times new roman”>hi!</font> would display hi!
- Bold To make something bold, <b>hi!</b> would display hi!
- Italics To italicize something, <i>hi!</i> would display hi!
- Underline To underline something, <u>hi!</u> would display hi!
- Link Break To start a new line in an html document, use <br>. For example, hi!<br>you!<br>Okay. would display: hi!
you!
Okay.
To make a larger (paragraph) break, just <p> instead.
- Email Link To create an email link -
<a href=”shrynesiglos@rocketmail.com”>email me!</a>
- Image Link To make an image a link, use the a href and image tags together. Image links have a default border of 1 pixel, so you can eliminate that by adding in border=0.
<a href=”http://neskaya.net”><img src=”http://neskaya.net/images/button.gif” border=”0”></a> would display

sometimes, the no right click w/ a corresponding message is kinda annoying, right?
here’s the code without any message coming out :)
Copy the following code into your <HEAD></HEAD> tags.
<script type=”text/javascript”>
<!—
//(c) Ian Muscat 2007
function IE(e)
{
if (navigator.appName == “Microsoft Internet Explorer” && (event.button == “2” || event.button == “3”))
{
return false;
}
}
function NS(e)
{
if (document.layers || (document.getElementById && !document.all))
{
if (e.which == “2” || e.which == “3”)
{
return false;
}
}
}
document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function(“return false”);
//—>
</script>
Script Title: No Right Click and Color Changer
Description: it will prevent copiers to copy in your website! and change the color of your web.
Copy the following code into your <HEAD></HEAD> tags.
<style> <!—
BODY{
scrollbar-face-color:#294A5A;
scrollbar-arrow-color:#FFFFFF;
scrollbar-track-color:#4A5A5A;
scrollbar-shadow-color:#5A6363;
scrollbar-highlight-color:#5A6363;
scrollbar-3dlight-color:#294242;
scrollbar-darkshadow-Color:#294242;
}
—></style>
<SCRIPT language=”JavaScript”>
<!—
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function(“return false”)
—>
</SCRIPT>