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