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