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