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