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