450 likes | 708 Views
ACM 262. Week -2. HTML. HTML. HTML. HTML. Planning a Website. Planning a Website. Planning a Website. Planning a Website. HTML. HTML. HTML. HTML. HTML. HTML. Document Decleration. Document Decleration. Meta Tags. Blank Space. Blockquote. <html> <body>
E N D
ACM 262 Week -2 ACM 262 Course Notes
HTML ACM 262 Course Notes
HTML ACM 262 Course Notes
HTML ACM 262 Course Notes
HTML ACM 262 Course Notes
Planning a Website ACM 262 Course Notes
Planning a Website ACM 262 Course Notes
Planning a Website ACM 262 Course Notes
Planning a Website ACM 262 Course Notes
HTML ACM 262 Course Notes
HTML ACM 262 Course Notes
HTML ACM 262 Course Notes
HTML ACM 262 Course Notes
HTML ACM 262 Course Notes
HTML ACM 262 Course Notes
Document Decleration ACM 262 Course Notes
Document Decleration ACM 262 Course Notes
Meta Tags ACM 262 Course Notes
Blank Space ACM 262 Course Notes
Blockquote <html> <body> Here comes a long quotation: <blockquote> This is a long quotation. This is a long quotation. This is a long quotation. This is a long quotation. This is a long quotation. </blockquote> Notice that a browser inserts white space before and after a blockquote element. It also inserts margins for the blockquote element. </body> </html> ACM 262 Course Notes
Lists ACM 262 Course Notes
Lists ACM 262 Course Notes
Nested Lists ACM 262 Course Notes
Nested Lists ACM 262 Course Notes
Special Characters ACM 262 Course Notes
Colors ACM 262 Course Notes
Body <html> <body bgcolor="#E6E6FA"> <h1>Hello world!</h1> <p><a href="http://www.w3schools.com">Visit W3Schools.com!</a></p> <p><b>Note:</b> If using color names, different browsers may render different colors, and Firefox have problems if the attribute value is in RGB code (will not display correct color).</p> <p><b>Tip:</b> To produce equal results in all browsers, always use hex code to specify colors.</p> <p>However, the bgcolor attribute was deprecated in HTML 4, and is not supported in HTML 4.01 Strict DTD or in XHTML 1.0 Strict DTD. Use CSS instead.</p> </body> </html> ACM 262 Course Notes
Body <html> <body background="w3s.png"> <h1>Hello world!</h1> <p><a href="http://www.w3schools.com">Visit W3Schools.com!</a></p> <p>The background attribute was deprecated in HTML 4, and is not supported in HTML 4.01 Strict DTD or in XHTML 1.0 Strict DTD. Use CSS instead.</p> </body> </html> ACM 262 Course Notes
Image Files ACM 262 Course Notes
Image Files ACM 262 Course Notes
Image Files ACM 262 Course Notes
Image Files ACM 262 Course Notes
Links ACM 262 Course Notes
Links ACM 262 Course Notes
Links ACM 262 Course Notes
Links ACM 262 Course Notes
Tables ACM 262 Course Notes
Tables <table border="1" cellspacing="10"> <table border="1" cellpadding="10"> ACM 262 Course Notes
Tables <table border="1" width="400"> <table border="1" width="90%"> ACM 262 Course Notes
Tables ACM 262 Course Notes
Tables ACM 262 Course Notes
Tables <table><tr><td>First cell in first table. The cell to the right has the second table in it.</td><td> <table> <tr><td>nested table</td></tr> <tr><td>nested table</td></tr> </table></td></tr></table> ACM 262 Course Notes
HTML 5 HOMEWORK ACM 262 Course Notes
HTML 5 ACM 262 Course Notes
HTML 5 ACM 262 Course Notes