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