How To Create A Webpage With A Simple Style Sheet – Part III

Tuesday, February 16th, 2010

In this video I show you how to create your own webpage with minimal html code, by using a simple style sheet. This is PartIII and you might like to view PartI and Part II also. Thanks www.ebiz4every1.com

Duration : 0:7:11

(more…)

Technorati Tags: , , , , , ,

How To Create A Webpage With A Simple Style Sheet – Part I

Saturday, February 13th, 2010

In this video I show you how to create your own webpage with minimal html code, by using a simple style sheet. This is PartI and you might like to view PartII also. Thanks www.ebiz4every1.com

Duration : 0:8:54

(more…)

Technorati Tags: , , , , , ,

Firefox: Copy HTML From Any Website – Tekzilla Daily Tip

Monday, February 1st, 2010

Tweak websites with the editor of your choice

Duration : 0:1:49

(more…)

Technorati Tags: , , , , , , , , , , , , , , , , , ,

How to make a website: HTML Tutorial – Basics

Friday, January 29th, 2010

http://www.LittleWebHut.com/
Start off with a solid foundation by learning some of the basics of HTML – XHTML. In this HTML tutorial you will learn how to make a simple webpage.

The tutorial starts off with definitions for both HTML and Xhtml. It then goes on to demonstrate how you can use Microsoft Notepad to create your HTML file. It explains what HTML tags are and how to use some of the basic ones. This tutorial also shows how to display the HTML file in a web browser.

This tutorial is based on xhtml version 1.0.

Duration : 0:8:42

(more…)

Technorati Tags: , , , , , , , , , ,

are all of my webpages called index.html?

Monday, January 25th, 2010

when i make my webpage in dreamweaver cs3, is just the main page called index.html?

index.htm[l] is a default page that will be fetched by the server if the user accesses the site/dir without specifying file name
I.e. http://yourSite/yourDir/ and http://yourSite/yourDir/index.html will fetch the same file, the idea is that you have ONE index.htm[l] file per directory…
The rest of the pages can be called anything you like them to be called…

Technorati Tags: , , , , , ,

geocities web page message no html index file message; can’t create a new one?

Friday, January 22nd, 2010

I did not delete index.html file to access my webpage, received message that there is no file so I can’t access my web files

Check to make sure the index.html file name is in all lower clase letters, also make sure it is not i any subfolders, this maybe your problem. You must have a file named index.html to open your webpage

Technorati Tags: , , , , , ,

What is an html code that changes the bullets for a list to something other than a plain little dot?

Friday, January 22nd, 2010

I need an html code that places bullets, but makes the bullet something different than a regular dot. I already have the code for it. I’m just tired of the same bullet on my webpage, and want something else.

Take a look here :

http://www.htmlgoodies.com/tutorials/getting_started/article.php/3479461

Technorati Tags: , , ,

How to add a Html code to PowerPoint 2007?

Friday, January 22nd, 2010

How do you add a html code to powerpoint? I actually want it to show the image but it doesn’t.

Any Help?

why would you add html code to powerpoint ?? that doesn’t make sence?

the html code to add an image to a webpage is …
<img src="(web page or location of image)" />

so an example would be …
<img src="http://image.gsfc.nasa.gov/image/image_launch_a5.jpg" />

but you dont add html to a powerpoint you select insert from the top bar and picture ?!?!?!
to add a link to a html you just copy the link from the webbrowser and then click at the end of the link with the mouse and hit enter
this will turn the link blue and you can then press ctrl and left click on the link to open it?!?!

im puzzled :) lol

Technorati Tags: , , , , , , , , , , , , , ,

How to insert non-displaying text in xhtml code?

Wednesday, January 20th, 2010

I know there is a way to write text into xhtml code in a certain way so it does not actually show up in the finished webpage. But for some reason, I cannot remember what the code tags are supposed to be.

For example, if I wanted to write notes to help me remember things in the code, but don’t want them to show up.

Hi Jeff,

If you simply want to make comments, use these tags:
<!– text which doesn’t show up –>

And, you can place large blocks of text in your page:
<!–
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus neque neque, pharetra quis fringilla a, commodo eleifend nisl. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce neque diam, dapibus quis gravida at, auctor ut est.
–>

Best regards,

subexpression

Technorati Tags: , , ,

Html, How can I get my title bar to change on my index page?

Saturday, November 14th, 2009

I have just started to learn how to build web sites, I am using just plain old html in note pad. I have managed to divided my page into 2 frames with a sidebar and my main section. The problem I have is when I follow the links on my main section from the index page the title bar does not change. Can anyone advise me what i’m missing, Thanks.

inside the head tag
there is a title..

here is a sample of html which give hai this is title as title for the webpage..

change it to your wish

<html>
<head>
<title>hai this is title</title>
</head>
<body>
body goes here
</body>
</html>

Technorati Tags: , , , , , ,