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