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