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