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