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