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