Basic HTML Tips
HTML stands for- "hypertext markup language". Its the codes that create certain aspects to your web pages. Things like bold text and italic can be made using HTML codes.
On some sites and blogs or blog editors we sometimes need to create our own HTML codes. Here are some basic HTML tips on hypertext and hyperlink that you can keep bookmarked for later use and ease. Just right click on your mouse and bookmark this page.
I have also included some other tricks as well! Just copy and paste the examples and replace your own links and text instead!
These are some simple tips and tricks that you can use to make your own codes for your sites and web pages or blogs. All you will have to do in some of these instances is copy the examples and replace the examples with your own text or links!
_________________________________________________________________
Here is how to make text link:
<a href="YOUR URL"> YOUR TEXT HERE </a>
Here are the results that I have linked to another hub:
YOUR TEXT HERE
_________________________________________________________________
How to make your text link open in another tab or window:
<a href="YOUR URL" target="_blank"> YOUR TEXT HERE </a>
_________________________________________________________________
How to center objects or images or videos on your page:
Place this code before the objects code <center>
Place this code after all the objects code at the end </center>
_________________________________________________________________
Use this code to get "space" between objects or items:
<p>
You may have to close this tag using </p>
_________________________________________________________________
How to make text scroll:
<marquee bgcolor="#000000">Text Goes here</marquee>
_________________________________________________________________
You can change the color of the background:
Black
<marquee bgcolor="#000000">Text Goes here</marquee>
White
<marquee bgcolor="#FFFFFF">Text Goes here</marquee>
Red
<marquee bgcolor="#FF0000">Text Goes here</marquee>
Blue
<marquee bgcolor="#0000FF">Text Goes here</marquee>
_________________________________________________________________
Here is how to make Bold Text and Larger Text:
<b>Bold Text</b>
<h1>Large </h1>
_________________________________________________________________
I hope that this basic information on some HTML tips will help!