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