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