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