HTML HELP PLEASE HTML HELP PLEASE
#1
Posted 11 October 2010 - 02:32 AM
I am new to html so anybody can help me how to improve my html knowledge i mean from which point i have to start what are the basic thing's and what is the difference between HTML-XHTML?
Any advice would be appreciated.
Thank's
#2
Posted 11 October 2010 - 05:19 AM
And re the HTML / XHTML issue: http://www.killersit...ted-30-july-06/
#3
Posted 16 October 2010 - 04:30 AM
#4 Guest_penelopeklimas
Posted 15 February 2011 - 06:27 AM
This post has been edited by Andrea: 15 February 2011 - 06:40 AM
Reason for edit: Link Removed
#5
Posted 15 February 2011 - 06:42 AM
<img src="image.jpg" alt="Description of Image" width="500px" height="300px">
This assumes that the image is in the same folder as the page. Make sure the image is optimized to be the size you need, and not too large of a file (loadtimes).
#6
Posted 30 May 2011 - 04:37 AM
The most important difference between HTML and XHTML are as follows:
1. It allows an author to omit certain tags and use attribute minimization.
2 The Extensible Hyper Text Markup Language, or XHTML, is an application of XML (Extensible Markup Language). It doesn't allow the omission of the tags.This means that in XHTML we need to use </br> tag with <br> tag.But in HTML, we can use only one </br> tag in place of <br> and </br>
#7
Posted 30 May 2011 - 07:16 AM
<br />
The <br> is not needed - you only use the properly closed br tag.
In HTML, all you use is the <br> tag.
Please let me know if you have any questions.
#8
Posted 06 June 2011 - 07:13 AM
#9
Posted 14 June 2011 - 12:28 AM
Quote
Can't we use the same line break in HTML4.01 too?
I am talking about br / line break.
#10
Posted 14 June 2011 - 04:53 AM
<br>
and in XHTML like that:
<br />
#11
Posted 15 June 2011 - 09:25 AM
However there is no requirement or even any reason any longer to leave the space, I never have and even back then it worked fine. <br/>
Kyle
"90% of user's 'problems' can be resolved by punching them -the other 10% by switching off their PCs."
#12
Posted 21 February 2012 - 05:40 AM
Is not case sensitive
Allows the user to omit certain tags
when ever xml parser encounter an error relating to the document well formedness, HTML parser is expected to attempt recover & continue.
XHTML
Is case sensitive
it doesn't permit the omission of any tags
when ever xml parser encounter an error relating to the document well formedness, XHTML parser must abort it.

Help














