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