Use on the webTotal Use [ 4522 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/43ef8769bbf50cd4fd75dc1951ffa487?family=D.I.Y.+Time+W01+Slab+Italic" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/43ef8769bbf50cd4fd75dc1951ffa487?family=D.I.Y.+Time+W01+Slab+Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "D.I.Y. Time W01 Slab Italic";
src: url("https://db.onlinewebfonts.com/t/43ef8769bbf50cd4fd75dc1951ffa487.eot");
src: url("https://db.onlinewebfonts.com/t/43ef8769bbf50cd4fd75dc1951ffa487.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/43ef8769bbf50cd4fd75dc1951ffa487.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/43ef8769bbf50cd4fd75dc1951ffa487.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/43ef8769bbf50cd4fd75dc1951ffa487.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/43ef8769bbf50cd4fd75dc1951ffa487.svg#D.I.Y. Time W01 Slab Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "D.I.Y. Time W01 Slab Italic";