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