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