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