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