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