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