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