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