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