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