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