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