Technical Tricks
Basic HTML
There are a few extra things that you can do if you know a little bit of HTML.
There are sellers who use their knowledge of HTML to create fantastic designs, but here I'll just show you some handy tricks that will help you in the immediate future.
First - Introduction to HTML
The fact that you are able to read this page is because there is a lot of HTML involved. Practically all internet pages contain HTML (well almost all of them).
How does it work?
There are things called tags that make HTML work. For example:
NewFile.html
<html>
This is the new html file.
</html>
Here, in this NewFile we have written something between two elements <html> and </html>.
<html> begins the page as HTML page and </html> ends it.
Similarly if we wrote:
<html>
<bold>
This is the new html file.
</bold>
</html>
This will make the text bold. Thus tags are used to make things happen in a HTML file.
If you put the tag <br> somewhere in the page it will give you a new line, and <p> for paragraph.
Lets see the links and how it is done:
Example: <a href="www.salesberg.com" target="_blank"> Click here for SalesBerg </a>
<a href= - This starts the link tag
"www.salesberg.com" - This specifies the link to which the visitor will be taken to. It can be any valid address that you desire. For example - "www.yahoo.com" or "http://www.salesberg.com/index.php/tutorial/technical-tricks/personal-web-server" to be more specific. Please note however, there are links that will not work. For example, links to your local drive, or a link where you had to log in to access the page.
target="_blank" - This will bring open the link in a new window. It is optional and does not have to be present for your link to work.
Click here for SalesBerg - This is the text that will be the link.
</a> - This ends the link tag
So lets have make us a basic HTML page.
Lets make a new text file, and rename it to new.html
Then comes the HTML codes:
<html>
<bold>This is our first page</bold>
<br>
<a href="www.salesberg.com" target="_blank"> Click here for SalesBerg </a>
</html>
This will give us the out put that may look somewhat like:
This is our first page
Click here for SalesBerg
What we learnt so far is the most basic concepts about HTML. There are lots more to learn, but for our purpose we will use this knowledge to enhance our online advertisements.
User Menu
Popular Articles
Tweet
-
New Arrival, Altec Lancing basic 2.1 Speaker System with subwoofer - Full Salesberg Review on the product.
- Follow On Twitter


Comments