component-alpha-1-ref.html (333B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 5 <meta charset="utf-8"> 6 <title>red box</title> 7 <style> 8 9 #wrapper { 10 } 11 12 #shape { 13 background-color: red; 14 15 width: 200px; 16 height: 200px; 17 } 18 </style> 19 20 </head> 21 <body> 22 <div id="wrapper"> 23 <div id="shape">foo</div> 24 </div> 25 26 </body> 27 </html>