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