XHTML標準文法


XHTMLを書くにはきれいなHTML文法が必要です。
--------------------------------------------------
Some More XHTML Syntax Rules:より多くのXHTML文法規則:Attribute names must be in lower case属性名は、小さく書いてください。attribute values mbe quot属性値はダブル引用符Attribute minimzation is forbidden属性を使って簡単に書いてはいけません。ementsXHTML DMD定義の強制要素
--------------------------------------------------
Attribute Names Must Be In Lower Case属性名は小文字This is wrongでなければなりません。これは間違いです。
<table WIDT=「100%」This corect:これは正しいです。
<table width=「100%」>
--------------------------------------------------
Attribute Values Must Be Quoted属性値はダブルクォーテーションThis is wrongを付けなければなりません。これは間違いです。
<table width=100%>This corect:これは正しいです。
<table width=「100%」>
--------------------------------------------------
Attribute Minimization Is Forbiddenは属性が簡単にThis is wrongを書くことを許さないです。これは間違いです。
<input checked><input readonly><input disabled><option selected><frame noresize>This corect:正しいのはこのようです。
<input checked=“checcked”<