菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <style> h1 { text-align: center; text-transform: uppercase; color: #A7C942; } p { text-indent: 50px; text-align:justify; letter-spacing:3px; } a { text-decoration:none; } </style> </head> <body> <h1>text formatting</h1> <p>This text is styled with some of the text formatting properties. The heading uses the text-align, text-transform, and color properties. The paragraph is indented, aligned, and the space between characters is specified. </p> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net