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