03 css三种引入的方式2024-02-01 22:25:46<!-- 1.内联式(行内式) 2.嵌入式 3.外部式 优先级:内联式》嵌入式》外部式 嵌入式和外部式根据执行顺序,越靠近就先执行 --> <!DOCTYPE html> <html> <head> <title></title> <!-- 嵌入式 --> <style type="text/css"> h1{ color: red; } </style> <!-- 外部式 --> <link rel="stylesheet" type="text/css" href="css/index.css"> </head> <body> <!-- 内联式 --> <p style="color: green"> 需要用什么颜色? </p> <h1> 小圆圈 </h1> <h3> walter </h3> </body> </html> 上一篇:html基础下一篇:二分类问题,应该选择sigmoid还是softmax函数