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