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