init
This commit is contained in:
42
Html-Notes/00-html-start.html
Normal file
42
Html-Notes/00-html-start.html
Normal file
@@ -0,0 +1,42 @@
|
||||
<!-- html代码注释-->
|
||||
|
||||
<!-- 单标签 -->
|
||||
<标签名>
|
||||
<标签名/>
|
||||
|
||||
<!-- 双标签 -->
|
||||
<标签名>
|
||||
|
||||
<!-- 标签内部 -->
|
||||
|
||||
</标签名>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<!-- 告诉浏览器,我是哪个版本的内容 -->
|
||||
|
||||
<html>
|
||||
<!-- 网页 -->
|
||||
|
||||
<head>
|
||||
|
||||
<!-- 网页设置 -->
|
||||
|
||||
<title>网页栏标题</title>
|
||||
|
||||
<link rel="icon" href="_sitegray/_sitegray_d.css"/>
|
||||
<!-- rel="icon" 设置网页小图标 -->
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<!-- 设置文件编码格式 -->
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<!-- 网页的内容部分 -->
|
||||
|
||||
网页的内容部分
|
||||
<div></div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user