Use on the webTotal Use [ 4920 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/8484abd5d998abc2dcfe389ca7f9f72c?family=Every+little+thing+that+you+do" 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/8484abd5d998abc2dcfe389ca7f9f72c?family=Every+little+thing+that+you+do);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Every little thing that you do";
src: url("https://db.onlinewebfonts.com/t/8484abd5d998abc2dcfe389ca7f9f72c.eot");
src: url("https://db.onlinewebfonts.com/t/8484abd5d998abc2dcfe389ca7f9f72c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/8484abd5d998abc2dcfe389ca7f9f72c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/8484abd5d998abc2dcfe389ca7f9f72c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/8484abd5d998abc2dcfe389ca7f9f72c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/8484abd5d998abc2dcfe389ca7f9f72c.svg#Every little thing that you do")format("svg");
}
2CSS rules to specify fonts
font-family: "Every little thing that you do";