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