Skip to content

Instantly share code, notes, and snippets.

@wangyongjie2017
wangyongjie2017 / HTML-tags.md
Created April 7, 2018 02:37 — forked from yisibl/HTML-tags.md
常用的 HTML 头部标签

常用的 HTML 头部标签

详细介绍参见原文:yisibl/blog#1

<!DOCTYPE html> <!-- 使用 HTML5 doctype,不区分大小写 -->
<html lang="zh-cmn-Hans"> <!-- 更加标准的 lang 属性写法 http://zhi.hu/XyIa -->
<head>
    <meta charset='utf-8'> <!-- 声明文档使用的字符编码 -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <!-- 优先使用 IE 最新版本和 Chrome -->
<ul class="zzc-ul">
<li class="zzc-li tomato"></li>
<li class="zzc-li orange"></li>
<li class="zzc-li gold"></li>
<li class="zzc-li green"></li>
<li class="zzc-li steelblue"></li>
</ul>
<div class="meteor"></div>
<div class="sidebar">
<ul class="level-1">
@wangyongjie2017
wangyongjie2017 / index.html
Created May 31, 2017 02:27
JS基础写入方式 // source http://jsbin.com/vutekot
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS基础写入方式</title>
</head>
<body>
<button onclick="alert('我是内联')">我是内联</button>
<br>