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