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