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