src/cm/media/js/lib/yui/yui3.0.0/examples/cssreset/cssreset-basic_source.html
changeset 0 40c8f766c9b8
equal deleted inserted replaced
-1:000000000000 0:40c8f766c9b8
       
     1 
       
     2 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
       
     3 <html>
       
     4 <head>
       
     5     <meta http-equiv="content-type" content="text/html; charset=utf-8">
       
     6     <title>YUI 3.x: CSS Fonts Basic Example</title>
       
     7     <link rel="stylesheet" href="../../build/cssreset/reset.css" type="text/css">
       
     8 </head>
       
     9 <body>
       
    10 	<h1>This is a H1 element.</h1>
       
    11 	<h2>This is a H2 element.</h2>
       
    12 	<h3>This is a H3 element.</h3>
       
    13 	<h4>This is a H4 element.</h4>
       
    14 	<h5>This is a H5 element.</h5>
       
    15 	<h6>This is a H6 element.</h6>
       
    16 
       
    17 	<ul>
       
    18 		<li>This is a LI in a UL</li>
       
    19 	</ul>
       
    20 
       
    21 	<ol> 
       
    22 		<li>This is a LI in a UL</li>
       
    23 	</ol>
       
    24 	
       
    25 	<dl>
       
    26 		<dt>This is a DT in a DL</dt>
       
    27 		<dd>This is a DD in a DL</dd>
       
    28 	</dl>
       
    29 	
       
    30 	<form>
       
    31 		<input type="text" value="This is an INPUT type TEXT in a FORM"/>
       
    32 
       
    33 		<select>
       
    34 			<option>This is an OPTION in a SELECT</option>
       
    35 			<option>This is an OPTION in a SELECT</option>
       
    36 			<optgroup>
       
    37 				<option>This is an OPTION in a OPTGROUP in a SELECT</option>
       
    38 				<option>This is an OPTION in a OPTGROUP in a SELECT</option>
       
    39 			</optgroup>
       
    40 			<option>This is an OPTION in a SELECT</option>
       
    41 		</select>
       
    42 
       
    43 		<textarea name="ta1">This is text in a TEXTAREA in a FORM</textarea>
       
    44 		
       
    45 		<fieldset>	
       
    46 			<textarea name="ta2">This is text in a TEXTAREA in a FIELDSET in a FORM</textarea>
       
    47 		</fieldset>
       
    48 
       
    49 		<button>This is a BUTTON</button>
       
    50 
       
    51 	</form>
       
    52 	
       
    53 	<p>This paragraph contains a bunch of phrase elements. Up first in an <a href="test">[A]nchor</a>, followed by an <abbr title="test">ABBR with a title value</abbr>, followed by an <acronym title="test">ACRONYM with a title value</acronym>, followed by an <address>ADDRESS</address>, followed by a <cite>CITE</cite> element, followed by a <code>CODE</code> element, followed by a <del>DEL</del> element, followed by a <em>EM</em> element, followed by a <ins>INS</ins> element, followed by a <kbd>KBD</kbd> element, followed by a <q>Q</q> element, followed by a <samp>SAMP</samp> element, followed by a <span>SPAN</span> element, followed by a <strong>STRONG</strong> element, followed by a <tt>TT</tt> element, followed by a <var>VAR</var> element, all within a containing P.</p>  
       
    54 
       
    55 	<blockquote>This is a BLOCKQUOTE element.</blockquote>
       
    56 	
       
    57 	<table>
       
    58 		<caption>This is a CAPTION in a TABLE</caption>
       
    59 		<thead>
       
    60 			<tr>
       
    61 				<th>This is a TH in a TR in a THEAD in a TABLE</th>
       
    62 				<td>This is a TD in a TR in a THEAD in a TABLE</td>
       
    63 			</tr>
       
    64 		</thead>
       
    65 		<tfoot>
       
    66 			<tr>
       
    67 				<th>This is a TH in a TR in a TFOOT in a TABLE</th>
       
    68 				<td>This is a TD in a TR in a TFOOT in a TABLE</td>
       
    69 			</tr>
       
    70 		</tfoot>
       
    71 		<tbody>
       
    72 			<tr>
       
    73 				<th>This is a TH in a TR in a TBODY in a TABLE</th>
       
    74 				<td>This is a TD in a TR in a TBODY in a TABLE</td>
       
    75 			</tr>
       
    76 		</tbody>
       
    77 	</table>
       
    78 
       
    79 </body>
       
    80 </html>