搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
HTML参考手册
HTML 标签大全
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>大卫编程网(div.cn)</title> </head> <body> <p> This is the first sentence. <big>This whole sentence is in bigger letters.</big> </p> (CSS 版) <p> This is the first sentence. <span style="font-size:1.2em">This whole sentence is in bigger letters.</span> </p> </body> </html>
运行结果