html与css学习
相关网站:
- html全标签网站 https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element
- css全标签网站 https://developer.mozilla.org/zh-CN/docs/Learn/CSS/Building_blocks/Selectors
- 效果预览网站 http://codepen.io
- 字体基础 https://developer.mozilla.org/zh-CN/docs/Learn/CSS/Styling_text/Fundamentals
- 网页安全字体列表:http://cssfontstack.com
- 各种字体在Win/Mac上的占有率统计 https://www.cssfontstack.com
- 字体选用平台 https://fonts.google.com/
标准格式
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<h1></h1>
<p></p>
</body>
</html>