该笔记将记录:与 HTML 编程相关的语言及技术。
附加说明
由于我们并非前端技术爱好者,所以本部分内容多半只是简单整理实现某些功能的代码片段,不会涉及任何高深的技术。这些代码片段也多半采集于网络,当让也会注明出处,以及它们所解决的问题。
应用
网站的 ICON 使用 base64 图片:(Adding a favicon to a static HTML page)
<link href="data:image/x-icon;base64,YourBase64StringHere" rel="icon" type="image/x-icon" />
Removing list indentation with CSS
https://stackoverflow.com/questions/9620594/removing-list-indentation-with-css
ul {
padding: 0;
list-style-type: none;
}