css_sduty/01_css的编写位置/位置1_行内样式.html
2024-06-29 18:53:19 +08:00

16 lines
408 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="../favicon.ico" rel="external nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>位置1_行内样式</title>
</head>
<body>
<!-- 内联样式 inline -->
<h1 style="color: red;font-size: 60px;">欢迎你</h1>
</body>
</html>