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