每日总结
使用<Style>标签来美化页面
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <!DOCTYPE html> <html> <head> <style type="text/css"> h1 {color: red} p {color: blue} </style> </head> <body> <h1>标题</h1> <p>这里是正文</p> </body> </html>
类似这种的,实际效果是这样的: