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