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