时间:2023-09-26 09:18:01 | 来源:网站运营
时间:2023-09-26 09:18:01 来源:网站运营
html基本语法与语义写法规则详解:本文主要为了初学者遇到基本语法不理解意思,语义写法规则不懂,下面就有详细的解释,另外小编还有一个web交流学习群,都是刚学习前端的小伙伴,大家一起交流,学习,讨论,每天还分享资料笔记视频,欢迎大家的加入点击进入10452672831<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
HTML 4.01 Transitional<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
HTML 4.01 Frameset<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
HTML5文档类型1<!DOCTYPE html><!-- 使用 Html5 doctype,不区分大小写 -->
meta<metahttp-equiv="Content-Type"content="text/html; charset=utf-8">html5<metacharset="utf-8">
SEO优化<title>your title</title>
页面描述<meta name="description" content="your description">
关键字<meta name="keywords" content="your keywords">
网页作者<meta name="author" content="your name">
网页搜索引擎索引方式<meta name="robots" content="index,follow">
follow 跟踪链接并分析目标网页。这是默认行为,并且可忽略。index 将网页编入索引。这是默认行为,并且可忽略。noodp 不使用 Open Directory Project 来创建内容描述。noydir 不使用 Yahoo Directory 来创建内容描述。noarchive 不允许搜索引擎显示内容的缓存版本。cache 允许搜索引擎显示内容的缓存版本。nocache 不允许搜索引擎显示内容的缓存版本。
标签@charset "utf-8";如果要在不支持html5的浏览器中使用html5标签,需要加一小段JavaScript代码
html{margin:0;padding:0;border:0}a,abbr,acronym,address,article,aside,blockquote,body,caption,code,dd,del,dfn,dialog,div,dl,dt,em,fieldset,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,iframe,img,label,legend,li,nav,object,ol,p,pre,q,section,span,table,tbody,td,tfoot,th,thead,tr,ul{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,dialog,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1.5;background:#fff}table{border-collapse:separate;border-spacing:0}caption,td,th{text-align:left;font-weight:400;float:none!important}table,td,th{vertical-align:middle}blockquote:after,blockquote:before,q:after,q:before{content:''}blockquote,q{quotes:"" ""}a img{border:none}a{text-decoration:none}:focus{outline:0}
<article contenteditable></article>以上就是html基本语法与语义写法规则详解的详细内容,
关键词:写法,规则,基本,语法