|
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 Base Basic Example</title> |
|
7 <link rel="stylesheet" href="../../build/cssreset/reset.css" type="text/css"> |
|
8 <link rel="stylesheet" href="../../build/cssfonts/fonts.css" type="text/css"> |
|
9 <link rel="stylesheet" href="../../build/cssbase/base.css" type="text/css"> |
|
10 </head> |
|
11 <body> |
|
12 <h1>This is a H1 element.</h1> |
|
13 <h2>This is a H2 element.</h2> |
|
14 <h3>This is a H3 element.</h3> |
|
15 <h4>This is a H4 element.</h4> |
|
16 <h5>This is a H5 element.</h5> |
|
17 <h6>This is a H6 element.</h6> |
|
18 |
|
19 <ul> |
|
20 <li>This is a LI in a UL</li> |
|
21 </ul> |
|
22 |
|
23 <ol> |
|
24 <li>This is a LI in a UL</li> |
|
25 </ol> |
|
26 |
|
27 <dl> |
|
28 <dt>This is a DT in a DL</dt> |
|
29 <dd>This is a DD in a DL</dd> |
|
30 </dl> |
|
31 |
|
32 <form> |
|
33 <input type="text" value="This is an INPUT type TEXT in a FORM"/> |
|
34 |
|
35 <select> |
|
36 <option>This is an OPTION in a SELECT</option> |
|
37 <option>This is an OPTION in a SELECT</option> |
|
38 <optgroup> |
|
39 <option>This is an OPTION in a OPTGROUP in a SELECT</option> |
|
40 <option>This is an OPTION in a OPTGROUP in a SELECT</option> |
|
41 </optgroup> |
|
42 <option>This is an OPTION in a SELECT</option> |
|
43 </select> |
|
44 |
|
45 <textarea name="ta1">This is text in a TEXTAREA in a FORM</textarea> |
|
46 |
|
47 <fieldset> |
|
48 <textarea name="ta2">This is text in a TEXTAREA in a FIELDSET in a FORM</textarea> |
|
49 </fieldset> |
|
50 |
|
51 <button>This is a BUTTON</button> |
|
52 |
|
53 </form> |
|
54 |
|
55 <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> |
|
56 |
|
57 <blockquote>This is a BLOCKQUOTE element.</blockquote> |
|
58 |
|
59 <table> |
|
60 <caption>This is a CAPTION in a TABLE</caption> |
|
61 <thead> |
|
62 <tr> |
|
63 <th>This is a TH in a TR in a THEAD in a TABLE</th> |
|
64 <td>This is a TD in a TR in a THEAD in a TABLE</td> |
|
65 </tr> |
|
66 </thead> |
|
67 <tfoot> |
|
68 <tr> |
|
69 <th>This is a TH in a TR in a TFOOT in a TABLE</th> |
|
70 <td>This is a TD in a TR in a TFOOT in a TABLE</td> |
|
71 </tr> |
|
72 </tfoot> |
|
73 <tbody> |
|
74 <tr> |
|
75 <th>This is a TH in a TR in a TBODY in a TABLE</th> |
|
76 <td>This is a TD in a TR in a TBODY in a TABLE</td> |
|
77 </tr> |
|
78 </tbody> |
|
79 </table> |
|
80 |
|
81 </body> |
|
82 </html> |