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