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