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