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