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