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