Heim >Web-Frontend >HTML-Tutorial >LN :跟着W3School学HTML 010_html/css_WEB-ITnose
LN :跟着W3School学HTML 010
内容参考自W3School
HTML 教程
A paragraph.
实例解析
<html><head><link rel="stylesheet" type="text/css" href="/html/csstest1.css" ></head><body><h1>我通过外部样式表进行格式化。</h1><p>我也一样!</p></body></html>
效果展示
我也一样!
实例解析
<p style="color: red; margin-left: 20px">This is a paragraph</p>
效果展示
This is a paragraph
实例解析
<html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><meta http-equiv="Content-Language" content="zh-cn" /></head><body><a href="/example/html/lastpage.html" style="text-decoration:none">这是一个链接!</a></body></html>
效果展示
定义样式定义 | |
定义资源引用 | |
定义文档中的节或区域(块级) | |
定义文档中的行内的小块或区域 | |
定义基准字体。不赞成使用。请使用样式 | |
对文本进行水平居中。不赞成使用。请使用样式 | |
规定文本的字体、字体尺寸、字体颜色。不赞成使用。请使用样式 |