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