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