FireFox 3 Tips and tricks (keyboard shortcuts) to improve performance.
For Zoom In : Ctrl + "+"
For Zoom Out : Ctrl + "-"
Open a new empty tab : Ctrl + T
Close a tab : Ctrl + W
Reopen a Closed tab : Ctrl + Shift + T
Move cursor to the location bar : Ctrl + L
Move cursor to the search box : Ctrl + K
Scroll down the page : "Space Bar"
Scroll up the page : Shift + "Space Bar"
Refresh the page : Ctrl + R
Back : Alt + "<-"
Forward : Alt + "->"
Saturday, December 13, 2008
FireFox 3 Shortcuts
Yahoo mail Launches two new domains Rocketmail and Ymail
Yahoo mail Launches two new domains Rocketmail and Ymail.Rocketmail was one of the very first free Webmail services, acquired by Yahoo in 1997 ($80 million).And then Yahoo lauched Yahoo mail based on RecoketMail technology.
Now Yahoo mail has three domains Yahoo,RocketMail and Ymail.Yahoo take this step to lauch new domains because e-mail demand is growing day by day.
So,now just create e-mail address in yahoo as you wish.
Google Chrome - Internet browser
Google release new beta internet browser named "Google Chrome".
Google Chrome is an open source web browser developed by Google. The name is derived from the graphical user interface frame, or "chrome", of web browsers. The open source project behind Google Chrome is known as Chromium.
Primary design goals were improvements in security, speed and stability compared to existing browsers. There were also extensive changes in the user interface.
For more details Google Chrome
Redirect Page on Anonymous Entry
' Checking if an user has logged in
----------------------------------------------------------
Redirect Page on Anonymous Entry
The LoginView control can be used to check if an user has logged in. The control displays one of
<loggedintemplate>
</loggedintemplate></asp:loginview></loggedintemplate><p>Welcome back! </p>
<anonymoustemplate>
You are not logged in <a href="http://www2.blogger.com/Login.aspx">Login</a>
</anonymoustemplate></span></blockquote><span style="color: rgb(51, 102, 255);">
</span><loggedintemplate><asp:loginview id="LoginView1" runat="server">
<loggedintemplate>
</loggedintemplate></asp:loginview></loggedintemplate><p>Welcome back! </p>
<anonymoustemplate>
You are not logged in <a href="http://www2.blogger.com/Login.aspx">Login</a>
</anonymoustemplate>
The LoginView control also includes events for ViewChanging and ViewChanged, which allow you to write handlers for when the user logs in and changes status.
LoginView control, Check Login Status, Redirect Page on Login
Increase Website Speed ASP.net
' Speedup Website - Increase Website Speed ASP.net
----------------------------------------------------------
Precompiling a website will enhance the speed because pages do not have to be compiled the first time they are requested
This can also be used to create a compiled version of the site that can be deployed to a production server without source code.
To precompile use aspnet_compiler.exe from
c:\winnt\Microsoft.NET\Framework\v2.0.50727\
and from the command prompt --> aspnet_compiler -v /virtualPath
(or) aspnet_compiler -p physicalOrRelativePath -v /
you can append the above command with target path if it is for deployment.
aspnet_compiler -p "c:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\WebSites\PGWindow\" -v /
Automating Excel or Word using Asp.Net 2.0
Problems using Automation of Office server-side
Developers who try to use Office in a server-side solution need to be aware of five major concerns in which Office behaves differently than anticipated because of the environment. If your code is to run successfully, these concerns need to be addressed and their effects minimized as much as possible. Consider these items carefully when you build your application because no one solution can address all of them, and different designs require you to prioritize the elements differently.
1.
User Identity: Office Applications assume a user identity when they are run, even when they are started by Automation. They attempt to initialize toolbars, menus, options, printers, and some add-ins based on settings in the user registry hive for the user who launches the application. Many services run under accounts that have no user profiles (such as the SYSTEM or IWAM_[servername] accounts), and therefore Office may fail to initialize properly on startup, returning an error on CreateObject or CoCreateInstance. Even if the Office application can be started, without a user profile other functions may fail to work properly. If you plan to Automate Office from a service, you need to configure either your code or Office so that it will run with a loaded user profile.
2.
Interactivity with the Desktop: Office Applications assume that they are being run under an interactive desktop, and may in some circumstances need to be made visible for certain Automation functions to work properly. If an unexpected error occurs, or an unspecified parameter is needed to complete a function, Office is designed to prompt the user with a modal dialog box that asks the user what they want to do. A modal dialog box on a non-interactive desktop cannot be dismissed, which causes that thread to stop responding (hang) indefinitely. Although certain coding practices can help reduce the likelihood of this occurring, they cannot prevent it entirely. This fact alone makes running Office Applications from a server-side environment risky and unsupported.
3.
Reentrancy and Scalability: Server-side components need to be highly reentrant, multi-threaded COM components with minimum overhead and high throughput for multiple clients. Office Applications are in almost all respects the exact opposite. They are non-reentrant, STA-based Automation servers that are designed to provide diverse but resource-intensive functionality for a single client. They offer little scalability as a server-side solution, and have fixed limits to important elements, such as memory, which cannot be changed through configuration. More importantly, they use global resources (such as memory mapped files, global add-ins or templates, and shared Automation servers), which can limit the number of instances that can run concurrently and lead to race conditions if they are configured in a multi-client environment. Developers who plan to run more then one instance of any Office Application at the same time need to consider "pooling" or serializing access to the Office Application to avoid potential deadlocks or data corruption.
4.
Resiliency and Stability: Office 2000, Office XP, and Office 2003 use Microsoft Windows Installer (MSI) technology to make installation and self-repair easier for an end user. MSI introduces the concept of "install on first use", which allows features to be dynamically installed or configured at runtime (for the system, or more often for a particular user). In a server-side environment this both slows down performance and increases the likelihood that a dialog box may appear that asks for the user to approve the install or provide an appropriate install disk. Although it is designed to increase the resiliency of Office as an end-user product, Office's implementation of MSI capabilities is counterproductive in a server-side environment. Furthermore, the stability of Office in general cannot be assured when run server-side because it has not been designed or tested for this type of use. Using Office as a service component on a network server may reduce the stability of that machine, and as a consequence your network as a whole. If you plan to automate Office server-side, attempt to isolate the program to a dedicated computer that cannot affect critical functions, and that can be restarted as needed.
5.
Server-Side Security: Office Applications were never intended for use server-side, and therefore do not take into consideration the security problems that are faced by distributed components. Office does not authenticate incoming requests, and does not protect you from unintentionally running macros, or starting another server that might run macros, from your server-side code. Do not open files that are uploaded to the server from an anonymous Web! Based on the security settings that were last set, the server can run macros under an Administrator or System context with full privileges and compromise your network! In addition, Office uses many client-side components (such as Simple MAPI, WinInet, MSDAIPP) that can cache client authentication information in order to speed up processing. If Office is being automated server-side, one instance may service more than one client, and because authentication information has been cached for that session, it is possible that one client can use the cached credentials of another client, and thereby gain non-granted access permissions by impersonating other users.
(courtesy: http://support.microsoft.com/default.aspx?scid=kb;EN-US;257757)
Server-side automation, Automating Excel from Asp.Net, Asp.Net Office Applications
Images Clickable in Different Areas
Look at the following:

It's one image (the Google logo). However, try clicking on different parts of the image. It leads you to different web pages. The code below made the HTML tip:
<img src="http://www.google.com/images/logo.gif"
usemap=#GoogleImageMap>
<map name=GoogleImageMap><area shape=rect coords=0,0,68,109 href="http://en.wikipedia.org/wiki/G">
<area shape=rect coords=68,0,161,109 href="http://en.wikipedia.org/wiki/O">
<area shape=rect coords=161,0,201,109 href="http://en.wikipedia.org/wiki/G">
<area shape=rect coords=201,0,227,109 href="http://en.wikipedia.org/wiki/L">
<area shape=rect coords=227,0,275,109 href="http://en.wikipedia.org/wiki/E">
</map>
The first line inserts an image, called logo.gif. usemap=#GoogleImageMap calls the clickable areas GoogleImageMap. You can change the name GoogleImageMap to any other name you want, like GoogleLetters. Then, you have the 'Image Map':
<map name=GoogleImageMap>
<area shape=rect coords=0,0,68,109 href="http://en.wikipedia.org/wiki/G">
<area shape=rect coords=68,0,161,109 href="http://en.wikipedia.org/wiki/O">
<area shape=rect coords=161,0,201,109 href="http://en.wikipedia.org/wiki/G">
<area shape=rect coords=201,0,227,109 href="http://en.wikipedia.org/wiki/L">
<area shape=rect coords=227,0,275,109 href="http://en.wikipedia.org/wiki/E">
</map>
Make sure you change GoogleImageMap to the name of your image map. The italicized numbers stand for the right, top, left and bottom edges of each clickable rectangle area. The E letter, for example, has 227 as the right edge, 0 as the top edge, 275 as the left edge and 109 as the bottom edge. To find the coordinates of a clickable rectangle in any picture, you can copy and paste the picture into Paint. (See Note below to find out how to find out the numbers.) The href="http://..." tells which web page the viewer will go to when he/she clicks on the rectangle.
Try clicking everywhere around the E. You will see that in the rectangle defined by the coordinates 227,0,275,109 goes to http://en.wikipedia.org/wiki/E.

Remember, you can add and delete areas in order to add or remove clickable rectangles:
<img src="http://www.google.com/images/logo.gif"
usemap=#SecondGoogleImageMap>
<map name=SecondGoogleImageMap><area shape=rect coords=0,0,68,109 href="http://en.wikipedia.org/wiki/G">
<area shape=rect coords=201,0,275,109 href="http://en.wikipedia.org/wiki/Le">
</map>
Above I have removed the rectangles for O,G,L,E but added a rectangle for Le. Here is the result:

These tips and tricks can add a few touches of proffesionalism to the pictures on your web page! Remember to check out a few other tips in this web site!
NOTE: To find out the numbers next to coords that define a rectangle, copy and paste the image into Paint. Move your mouse across the image and look at the bottom left corner of Paint. You will see two numbers (for example, 47,56). 47 shows how far left your mouse is, and 56 shows how for down your mouse is. To find out the first two numbers you need to put next to coords=, move your mouse to the upper left of the rectangle you want, then look at the two numbers at the corner. To find out the last two numbers, move your mouse to the lower right of the rectangle, then look at the two numbers at the corner.
Having Columns Like in a Newspaper
| This is column 1 and this is column 1 and this is still column 1 | This is column 2 and this is column 2 and this is still column 2 | This is column 3 and this is column 3 and this is still column 3 |
The source code for the colums was this:
<TABLE BORDER="0">
<TR>
<TD WIDTH="30%" VALIGN="TOP">
This is column 1 and this is column 1 and this is still column 1<BR>
</TD>
<TD WIDTH="5%"></TD>
<TD WIDTH="30%" VALIGN="TOP">
This is column 2 and this is column 2 and this is still column 2<BR>
</TD>
<TD WIDTH="5%"></TD>
<TD WIDTH="30%" VALIGN="TOP">
This is column 3 and this is column 3 and this is still column 3<BR>
</TD>
</TR>
</TABLE>
When inserting the code, make sure you put it into very few lines.
Change all the little percentages to adjust the coloums, and also make sure you change the text.
This html tip will help your page be professional.
Thursday, December 11, 2008
Difference - HTML and XHTML
When inserting codes into the Blogger template, page element, or blog post, you may have seen error messages that the code could not be parsed, was not well-formed, was broken, or that the elements were not closed properly. These errors can be corrected if you understand the rules that must be adhered to in XHTML documents. Blogger templates use the XHTML 1.0 Strict Document Type. In this article, we shall explain some of the XHTML syntax or rules, so that you may troubleshoot and resolve the problems if these error messages should occur.
XML, HTML and XHTML
We shall keep this short. Just so as you understand what we said about document type, view the Page Source or Source of your Blogger blog. You should see this document type declaration at the very top:-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
The terms – XML, HTML and XHTML - refer to the markup language used to write the web pages. Many of us would have heard of HTML (Hypertext Markup Language), invented by Tim Berners-Lee, and used since the early days of internet. XML (Extensible Markup Language) is a meta-language, used to create other markup languages. The traditional HTML was later recast to use the rules of XML and that resulted in a new XML application, called XHTML (Extensible Hypertext Markup Language). Because XHTML rules are strict and unforgiving, not conforming to them when attempting to modify the template would result in error messages. So, what are these rules that Bloggers like us should take note of?
Basic Rules of XHTML
1. Codes to be in lowercase
Since XML is case sensitive, all the element keywords and attribute names used in XHTML should be in the lowercase. For example, the template code is not this:-
<TITLE>Tips for New Bloggers</TITLE> |
|---|
but this:-
<title>Tips for New Bloggers</title> |
|---|
If you have noticed, the elements and attribute names between the lesser than (<) and greater than (>) signs have to be in the lowercase. However, the value, which in this case is “Tips for New Bloggers”, can be in the uppercase, lowercase, or mixed case.
2. Attribute values to be in quotation marks
All the attribute values have to be enclosed either in single or double quotation marks. The following examples are not accepted by XHTML:-
<div id=header-wrapper> <a href=http://tips-for-new-bloggers.blogspot.com>Text Link</a> <img src=photo.jpg/> <table width=200 border=0 cellpadding=2> |
|---|
Instead, they should be written as such:-
<div id='header-wrapper'> <a href="http://tips-for-new-bloggers.blogspot.com">Text Link</a> <img src="photo.jpg"/> <table width="200" border="0" cellpadding="2"> |
|---|
3. Container elements must have closing tags
This is not correct:-
<p>A paragraph. |
|---|
In XHTML, there must be a closing tag with a forward slash (/) at the end:-
<p>A paragraph.</p> |
|---|
Examples of the many non-empty elements that have opening and corresponding closing tags are:-
<ul> ... </ul> <li> ... </li> <table> ... </table> <h2> ... </h2> <div> ... </div> <span> ... </span> <dt> ... </dt> <dd> ... </dd> <a href> ... </a> |
|---|
4. Standalone elements to be closed
Some of the elements are empty or standalone. They do not have associated closing tags. Common examples are:-
<br> <img> <input> <frame> <hr> <meta> <link> |
|---|
Nonetheless, in XHTML, these elements must be terminated or closed. There are two ways to do that. One way to terminate the element is to put a forward slash (/) at the end like this:-
<br/> <img/> <input/> <frame/> <hr/> <meta/> <link/> |
|---|
The second way is to add a corresponding closing tag like this:-
<br> ... </br> <img> ... </img> <input> ... </input> <frame> ... </frame> <hr> ... </hr> <meta> ... </meta> <link> ... </link> |
|---|
5. Elements to be properly nested
This means that elements must be closed in the reverse order. For example, this code is not accepted in XHTML:-
<form><table> ... </form></table> |
|---|
It is improperly nested because the form was created first followed by the table. To close them in the proper order, the table must be closed before the form, like this:-
<form><table> ... </table></form> |
|---|
6. Document to have only one root element
In the XHTML document, you will see that except for the document type declaration, all the codes are nested between <html> and </html>. This is the root element and all other elements or sub elements are in between. The document structure will look like this:-
<html> <head> ... </head> <body> ... </body> </html> |
|---|
7. Attribute minimization is not allowed
In XHTML, all attributes should be in the form name="value". Even if the value is the same as the name, it cannot be minimized to one word. Hence, in our Add Text Box and Textarea article, the textarea code is not this:-
<textarea readonly>Hyperlink Code</textarea> |
|---|
but this:-
<textarea readonly="readonly">Hyperlink Code</textarea> |
|---|
XHTML Character Entities
Quite a number of readers had asked why they were unable to display HTML codes in their blog posts or why their codes were not well-parsed when inserted into the template. If you have noticed by now, the codes are wrapped in the lesser than (<) and greater than (>) signs. The moment these are posted, they will be interpreted as codes and will trigger an action by the browser. Should you want to display these as part of the text, use their character entities instead.
| " | " |
|---|---|
| & | & |
| < | < |
| > | > |
The next time you see an error message to the effect that the code is not well formed, not well parsed, not properly closed, etc., take a look at this guide, troubleshoot the problem and try out the possible solutions.
HOW TO avoid Spam Filters while emailing programmatically
After training, the word probabilities (also known as likelihood functions) are used to compute the probability that an email with a particular set of words in it belongs to either category. Each word in the email contributes to the email's spam probability. This contribution is called the posterior probability and is computed using Bayes' theorem. Then, the email's spam probability is computed over all words in the email, and if the total exceeds a certain threshold (say 95%), the filter will mark the email as a spam.
HOW TO implement AutoComplete with jQuery & ASP.NET
Thursday, December 4, 2008
Page Fading: Internet Explorer
That fade was accomplished using this command in the head of the HTML code (crammed onto 1 line):
<meta http-equiv="Page-Enter" content="blendTrans(Duration=2.0)">
This "blends" the page in for 2.0 seconds when it is entered.
You can change the Page-Enter to Page-Exit, Site-Enter, or Site-Exit. Also, you can change the "blendTrans(Duration=2.0)" to:
"revealTrans(Duration=2.0,Transition=2)" for Circle In
"revealTrans(Duration=2.0,Transition=5)" for Wipe Down
or
"revealTrans(Duration=2.0,Transition=10)" for Checkerboard Across.
Change the Duration=2.0 to a different number for a longer or shorter transition (in seconds).
Change the Transition=2 to a different number for a different transition.
Make your site more interesting and beautiful using this tip!
NOTE FROM SALSAN: This tip only works in Internet Explorer. Also, it does not work when a site is your homepage (there is nothing to transition from).
Open a Page in a New Window
Insert something like this:
<A HREF="http://www.google.com/" TARGET="_blank">Open Google in a New Window</a>
And look at what happens:
Open Google in a New Window
You see?
Protection from Spam Robots
In your HTML code, display your email adress as:
you@random.com
This displays as:
you@random.com
The same thing goes for a link. Writing
<a href="mailto:you@random.com">Email me!</a>
in the code gives you:
Email me!
Let people contact you and keep yourself protected from spam easily using this tip. Remember, @ = @.
Create More Advanced Forms
Maybe you want to create a better form, so here are some more advanced html tips.
Before I start, please make sure that you change the e-mail adress in the form code.
Also, if your form does not work, try cramming the form code into one line.
Okay, so here was the code for the "basic form"
<FORM action="mailto:nilsmolina@comcast.net" method="post" enctype="text/plain">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="90%">
<TR>
<TD width="30%"><DIV align="right">
<B>Name:</B>
</DIV>
</TD>
<TD width="70%">
<INPUT type="text" name="name" size="20">
</TD>
</TR>
<TR>
<TD>
<DIV align="right"><B>Email:</B></DIV>
</TD>
<TD>
<INPUT type="text" name="email" size="20">
</TD>
</TR>
<TR>
<TD>
<DIV align="right">
<B>Comment:</B>
</DIV>
</TD>
<TD>
<TEXTAREA name="comment" cols="30" wrap="virtual"rows="4">
</TEXTAREA>
</TD></TR>
<TR>
<TD> </TD>
<TD>
<INPUT type="submit" name="submit" value="Submit">
<INPUT type="reset" name="reset" value="Reset">
</TD></TR>
</TABLE>
</FORM>
How about we first remove the name and e-mail, though if you want you can keep it.
Let's also remove the comment label, the table...
Let's just keep the box and the submit and reset buttons.
The code changes like this:
<FORM action="mailto:nilsmolina@comcast.net" method="post" enctype="text/plain">
<TEXTAREA name="comment" cols="30" wrap="virtual"rows="4">
</TEXTAREA>
<br>
<INPUT type="submit" name="submit" value="Submit">
<INPUT type="reset" name="reset" value="Reset">
</FORM>
This changes the form to this:
Now we have a simplified form. Let's put text in the box:
<FORM action="mailto:nilsmolina@comcast.net" method="post" enctype="text/plain">
<TEXTAREA name="comment" cols="30" wrap="virtual"rows="4">
Here is my comment...
</TEXTAREA>
<br>
<INPUT type="submit" name="submit" value="Submit">
<INPUT type="reset" name="reset" value="Reset">
</FORM>
And the form becomes changed like this:
Let's change the size of the box:
<FORM action="mailto:nilsmolina@comcast.net" method="post" enctype="text/plain">
<TEXTAREA name="comment" cols="20" wrap="virtual"rows="2">
Here is my comment...
</TEXTAREA>
<br>
<INPUT type="submit" name="submit" value="Submit">
<INPUT type="reset" name="reset" value="Reset">
</FORM>
And the form becomes this:
Now, let's make little circles instead of a box, like this:
We changed the code like this:
<form action="mailto:nilsmolina@comcast.net"
method="post"enctype="text/plain">
<input type="radio" value="Yes" name="cloning">This is a good website.
<br>
<input type="radio" value="No" name="cloning">This is a bad website.
<br>
<input type="radio" value="Question" name="cloning">I don't know.
<br>
< input type="submit" name="submit" value="submit">
<input type="reset" name="reset" value="Reset">
</form>
See that if someone click on, for example, this is a good website, then "YES" is returned to the adress nilsmolina@comcast.net.
Radio means those little circles.
You can also combine a box and radios.
Let's look at checkboxes.
Here is the code for checkboxes:
<input type="checkbox" name="option1" value="Milk"> Milk<br>
<input type="checkbox" name="option2" value="Butter" checked> Butter<br>
<input type="checkbox" name="option3" value="Cheese"> Cheese<br>
To put the code into a form, do this:
<form action="mailto:nilsmolina@comcast.net"
method="post"enctype="text/plain">
<input type="checkbox" name="option1" value="Milk"> Milk<br>
<input type="checkbox" name="option2" value="Butter" checked> Butter<br>
<input type="checkbox" name="option3" value="Cheese"> Cheese<br>
<input type="submit" name="submit" value="submit">
<input type="reset" name="reset" value="Reset">
</form>
Now you get a nice form like this:
Note that checked made the box checked.
Finally, you can also change what the buttons say, instead of boring submit, and reset, by changing the submit/reset in value="Submit"/value="Reset".
Now you can have great forms with these html tips!!!
Prevent Browsers from Caching
Put this code right after the <head>:
<META HTTP-EQUIV="Expires" CONTENT="Tue, 01 Jan 1980 1:00:00 GMT">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
Do not worry about the queer date, but worry about putting the code onto the least lines as possible. Your page will now probably never be cached again!
This web page also never gets cached.
Internet Explorer: Background Sound
This tip should be used right after the <head>:
Insert this code onto ONE line:
<bgsound src="http://home.comcast.net/~nilsmolina/Hecho.wav" loop="-1">
And you will get background sound like this.
Change the url for a different sound location.
Change the loop number if you would like to specify the amount of loops the sound should play.
That is how to add background sound.
Marquees: Scrolling Banners
Use this simple code:
<marquee bgcolor=pickacolor>THIS IS IN MY MARQUEE</marquee>
If I type yellow in the bgcolor place that gives you:
You can also just have
<marquee>THIS IS IN MY MARQUEE</marquee>
with no bgcolor value which gives you:
So use this code to attract attention and to keep your viewers on your site!
Note from Salsan:The background color only works for Internet Explorer.
Javascript: Back and Forward Links on Your Site
Let's show you how to make buttons:
<FORM METHOD="post">
<INPUT TYPE="button"
VALUE="BACK"
OnClick="history.go( -1 );return true;">
<INPUT TYPE="button"
VALUE="FORWARD"
OnClick="history.go( 1 );return true;">
</FORM>
If you insert this code onto one line, you get this:
You can delete the forward button section and you only get a back button.
This is the code for only a back button: (remember to put it on ONE line)
<FORM METHOD="post">
<INPUT TYPE="button"
VALUE="BACK"
OnClick="history.go( -1 );return true;">
</FORM>
If you change the VALUE="BACK" to something else, too, you can get something like this:
Nice, eh?
Hyperlinks are a bit simpler:
<A HREF="javascript:history.go(-1)">Go back</A>
<A HREF="javascript:history.go(1)">Go forward</A>
That code makes this:
Go back
Go forward
Edit the code a bit after you have inserted it, and you are done with this.
NOTE: Always make sure you have the most recent browser and javascript plugins.
Tips for Formatting Text
That is why I will show some html which will improve plain old text.
Html Tip 1: To insert plain old text simply insert any text between the <body> and </body> tags.
Example:
This is html text
Code:
This is html text
Html Tip 2: To make text bold, underlined, or be in italics, add the corresponding tag on the sides of the text.
To make text bold, insert the <b> and </b> tags on the sides of the text.
To make text in italics, insert the <i> and </i> tags on the sides of the text.
To make underlined, insert the <u> and </u> tags on the sides of text.
And, finally, here is a bonus tip:
You can put a line through text by placing the
Example:
This is html text in italics.
Code:
<i>This is html text in italics</i>
Html Tip 3: To change the font itself, font size and colors, look at this:
To change the color:
add the <FONT COLOR="color name in english"> and </font color> to the sides of the text.
To change the font size:
add the <font size=number from 1-7> and </font> to the sides of the text.
To change the font:
add the <font face="font name"> and </font> to the sides of the text.
In addition, you can put commas between different fonts like this:
<font face="artistik,arial">This can be in different fonts.</font>
This html code creates text which will be in the artistik font. However, if the computer does not have an artistik font, then the text will be written in arial.
Here is what the html does on your computer:
This can be in different fonts
Here is another example of changing the font size, text or colors:
<font color="red">This is html text in red</font>
And that creates this:
This is html text in red
And finally, another example for people who really like changing fonts:
<b>
<font color="red" font size=5 font face="artistik,times,arial">Fancy html text</font>
</b>
And that html creates this:
Fancy html text
Html Tip 4: It is sometimes useful to move text around a little.
Here are some nice tags:
To start a new paragraph, simply insert <p>
To center text, simply insert <center> and </center> to the sides of the text you want centered.
To align text to the right, simply insert <div style="text-align: right;"> and </div> on the sides of the text you want to be aligned to the right.
To start a new line, simply insert <br>.
Now there is some nice html to make your site look great!
Links and Images Basics
To put a link, use the following code:
<a href="http://google.com">Google</a>
The result is as follows:
Make sure you change "http://google.com" to the address of the site that you want to link to and that you change "Google" to the text that you want users to see.
To put an image into your web page, use the following code:
<img src="http://www.google.com/intl/en/images/logo.gif">
The result of that code is as follows:

Make sure that you change "http://www.google.com/intl/en/images/logo.gif" to the address of the image you want to display.
So those are two basic html tips!
NEED EXTRA HELP? HAVE A SUGGESTION? HAVE SOMETHING TO ADD? PLEASE POST COMMENTS WHILE LOOKING AT ALL THESE USEFUL HTML TIPS AND TRICKS. THANK YOU!