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