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