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