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