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