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