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