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