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