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