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