Author:
webinfinite
Jul
9
So you want to learn how to create HTML Lists? That’s why you are here right?
Here is a list of HTML list tags you can use.
| <ol> |
Defines an ordered list |
| <ul> |
Defines an unordered list |
| <li> |
Defines a list item |
| <dl> |
Defines a definition list |
| <dt> |
Defines a term (an item) in a definition list |
| <dd> |
Defines a description of a term in a definition list |
| <dir> |
Deprecated. Use <ul> instead |
| <menu> |
Deprecated. Use <ul> instead |
Here is an example of an unordered list.
An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
<ul>
<li>Hockey</li>
<li>Football</li>
</ul>
Result
<ol>
<li>Hockey</li>
<li>Football</li>
</ol>
Result
- Hockey
- Football
Experiment with the other tags to see what you get. Good luck.
Author:
webinfinite
Mar
7

broswershots.org
So you’ve designed a website and now you want to put it online. But wait a minute, your website looks great in Internet Explorer but how does it look in web browsers such as Firefox, Opera, Safari etc..? What do you do now? Do you install all browsers known to man kind? No, there is a awesome solution which is online and free.
We use browsershots.org to get our screen shots of our work. It is easy and free to use. All you have to do is enter your website address in the url “Enter URL Here:” section and select all the browsers you want to use to test your website. Within a few minutes, after you submit your site for testing, you should start to see some images of your site. It’s a great site for web developers and we recommend you use it.
Filed under:
CSS, HTML, Web Design
Author:
webinfinite
Mar
1

HTML tutorials at w3schools.com
Want to learn how to build a basic website? Than you need to learn HTML. Sure there are some programs out there that can make websites for your however these programs can also cause your website to not perform the way you want it to.
My advice is to go learn HTML and the best place to learn it is online. You can learn HTML for free at w3schools.com. I have to say I am pretty experienced in HTML however even I have to go there at times to learn new advancements. Click here to visit w3schools.com.