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