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