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