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