html 杂记

1. 用id连接到元素

用id连接到元素

2. target属性(是否在新窗口打开链接)

Preface

3. 格式



  
      
  
  

4. html引入css



5. 引用外部字体并使用

@font-face {
    font-family:"Emblema One";
    src : url("http://xxxx.woff"),uil("http://xxxx.ttf");
}
body {
    font-family:"Emblema One"
}

6. 设备适配(media 绑定启用此样式表的设备类型)

1. link中指定
// 手机

// 打印机

2. css中指定
// 只用于打印机的css
@media print {
     body {
        font-family:"Emblema One";
     }
}
// 所有
body {
        font-family:"Emblema One";
     }

7. css引用外部css


你可能感兴趣的:(html 杂记)