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