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