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