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