<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>css-practice-one</title> <!--2.内部样式--> <style type="text/css"> .blue{ color: red; font-size: 20px; } </style> <link rel="stylesheet" href="../css/my.css"> </head> <body> <!--1.内嵌--> <h1 style="color: aqua">王老师</h1> <h1 class="blue">朱老师</h1> <h1 class="yellow">高老师</h1> <p class="red">paragraph one</p> <p class="yellow">paragraph two</p> <p class="black">paragraph three</p> </body> </html>