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