HTML常用标签总结

HTML主体结构

<html>
	<!--设置html文档相关属性
		标题 字符集  网页作者   网页描述   网页关键词  
		css代码域和javaScript代码域
	-->
	<head>
		<title>html主体结构复习</title>
		<!--<meta charset="UTF-8"/>-->  
		<meta http-equiv="charset" content="utf-8"/>
		<meta http-equiv="content-type" content="text/html" />
		<meta name="keywords" content="html,test"/>
		<meta name="description" content="本网页是对html主体结构进行的总结" />
		<meta name="author" content="Steven-Russell" />
		
		<meta http-equiv="refresh" content="5;url=https://www.baidu.com"/>
	</head>
	
	<body>
		网页主体
	</body>
</html>

HTML常用标签:

     <p>段落内容</p>      <a href="超链接地址">

posted @ 2022-09-14 09:42  Steven-Russell  阅读(3)  评论(0编辑  收藏  举报  来源