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