HTML 简洁格式(常用推荐)

<!-- -->  //代码开始之前,一定不要加注释标记

 

<!DOCTYPE html>  //可选(代码顶部)//作用:声明为 HTML5 文档

 

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  //必须有(防止乱码)

 

<title></title>  //必须有(页面内容清晰)

 

<link rel="stylesheet" type="text/css" href="../css/common.css" />  //1.外部样式表

<style>  //2.内部样式表
a {

  color: green;
  text-decoration: none;  /*去除链接下划线*/
}
</style>
<p style="color:red;">This is a demo.</p>  //3.行内样式(也称内联样式)

posted on 2024-06-17 19:55  zhuyongzhe  阅读(19)  评论(0)    收藏  举报

导航