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