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