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