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