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