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