web应用基砒
Web应用基础
CSS <font color="maroon "face="Times Serif" size=7> <><U> Software School</U><I></font> p color: maroon; font: italic 2.6em Times, Serif text-decoration: underline; Software School <p>Software school< /p> Software school
CSS <font color="maroon" face="Times, Serif" size="7"> <I><U>Software School</U><I></font> p {color: maroon; font: italic 2.6em Times, Serif; text-decoration: underline;} <p>Software School</p>
CSS p, h1icolor: maroon font italic 2.6em Times serif text-decoration: underline; 1
CSS p, h1 {color: maroon; font: italic 2.6em Times, Serif; text-decoration: underline;}
不鼓励使用元素 <font> <basefont> <u> <strike> <center>
不鼓励使用元素 <font> <basefont> <u> <strike> <center> <i>
HTML与CSS <html> <head> <title>Harry' s ancestors </title> <ink rel="stylesheet"href="sheet1.css"type="text/css"media="all/> <style type="text/css"><! @import url(sheet2. CSS); h1 color: maroon; y body (background: yellow; 1 ></style> head body> <h1>Charlus Potter </h1> <p style="color: green >Rowling's Black Family. </p> </body> </html>
HTML与CSS <html> <head> <title>Harry's ancestors</title> <link rel="stylesheet" href="sheet1.css" type="text/css" media="all"/> <style type="text/css"><!-- @import url(sheet2.css); h1 {color: maroon; } body {background: yellow; } --></style> </head> <body> <h1>Charlus Potter</h1> <p style="color: green;">Rowling’s Black Family… </p> </body> </html>