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