Archive | HTML Tips

Tags: ,

Making Hyperlinks Open In A New Window

Posted on 29 September 2010 by David

I was doing some research on topics that visitors were searching for on my blog and at www.WebsiteToad.com and found that quite a few people are looking for a way to get hyperlinks to open in a new window.

This is actually a very simple snippet of HTML code. A hyper link allows you to create a link from a webpage to another webpage in your website or to a completely different website.

Basic Hyperlink

The code to use is:

<a href=”http://www.websitespot.com”>Domain Name Registration</a>

The link would appear as: Domain Name Registration

Creating Hyperlinks To Open In A New Window

If you create a link but would like to open a new browser window once it’s clicked you can simply add a little more code to accomplish this. I’ve highlighted the additional code below.

<a target=”_blank” href=”http://www.websitespot.com”>Domain Name Registration</a>

The link would appear as Domain Name Registration but would open a new window when clicked.

That’s it, if you’re using a WYSIWYG editor such as FrontPage or Dreamweaver you probably won’t need this know this code because you can simply click a button that tells the hyperlink to open in a new window but it certainly doesn’t hurt to know.

Best regards,
David Lalumendre
www.WebsiteToad.com

Comments (0)

Tags: , , , ,

How To Make A Bullet Point In HTML

Posted on 27 April 2010 by David

Here’s a quick HTML coding tip that I thought you may be interested in. By the way, you can find more information on basic HTML codes at www.WebsiteToad.com.

Inserting Bullet Points

Bullet points are great for separating a list in an easy to read format. The bullet point tag is as follows:

<ul>
<li> Item 1 </li>
<li> Item 2 </li>
<li> Item 3 </li>
</ul>

The code would appear as:

  • Item 1
  • Item 2
  • Item 3

Inserting Circle Bullet Points

Bullet points are great for separating a list in an easy to read format. The bullet point tag is as follows:

<ul type=”circle”>
<li> Item 1 </li>
<li> Item 2 </li>
<li> Item 3 </li>
</ul>

The code would appear as:

  • Item 1
  • Item 2
  • Item 3

I don’t know if this was anything that you were losing sleep over but I had to create some bullets and figured I’d pass the information online. Hope you’re having a good one!

Best regards,
David Lalumendre
www.WebsiteToad.com

Comments (0)