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