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