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