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