Skip to content

Instantly share code, notes, and snippets.

View Go7hic's full-sized avatar
👓
👖

Go7hic Go7hic

👓
👖
View GitHub Profile
@Go7hic
Go7hic / HTML-tags.md
Last active February 7, 2017 01:57 — forked from yisibl/HTML-tags.md
常用的 HTML 头部标签 #tags: 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 -->
@Go7hic
Go7hic / CSStx.html
Last active February 7, 2017 01:56
CSS 画的头像 #tags: cssdemo
<h1>cssfaces.com</h1>
<!--class .demo just for this demo-->
<div class="demo">
<span class="hair"></span>
<header>
<span class="eyes"></span>
<span class="nose"></span>
<span class="accessoire"></span>
</header>
</div>