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