<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Font - identity design</title>
	<atom:link href="https://blog.identitydesign.us/tag/font/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.identitydesign.us/tag/font/</link>
	<description>Web Tips &#38; Free Templates</description>
	<lastBuildDate>Wed, 26 Oct 2016 22:48:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://blog.identitydesign.us/wp-content/uploads/2020/08/Screen-Shot-2020-08-08-at-1.08.24-AM-120x120.jpg</url>
	<title>Font - identity design</title>
	<link>https://blog.identitydesign.us/tag/font/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Resolved! Loading Your Google Fonts Over https (SSL) Sites</title>
		<link>https://blog.identitydesign.us/loading-webfonts-https-ssl/</link>
					<comments>https://blog.identitydesign.us/loading-webfonts-https-ssl/#respond</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Wed, 06 Jan 2016 01:58:25 +0000</pubDate>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Google and SEO]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[HTML/CSS/PHP/JavaScripts]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[characters]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Great-Stuff]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Type]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=789</guid>

					<description><![CDATA[<p>I couldn&#8217;t believe how amazingly simple it was! I was searching for days and nights how to make my google fonts properly load over on my WordPress https (SSL) site. Here&#8217;s the basic story. I&#8217;m running an e-Commerce store with a Secure Sockets Layer installed on the domain. I created the logo with &#8220;La Belle [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/responsive-google-adsense/" rel="bookmark" title="Responsive Google Adsense is Easy!">Responsive Google Adsense is Easy!</a></li>
<li><a href="https://blog.identitydesign.us/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>I couldn&#8217;t believe how amazingly simple it was! I was searching for days and nights how to make my google fonts properly load over on my WordPress https (SSL) site.</p>
<p>Here&#8217;s the basic story. I&#8217;m running an e-Commerce store with a Secure Sockets Layer installed on the domain. I created the logo with &#8220;La Belle Aurore&#8221; font from Google. When customers pay for their purchase, they have to land on the cart page showing https. My logo won&#8217;t be properly showing when my customer uses IE (Internet Explorer 11) browsers or my Safari from iPhones, so I really had resolve this issue.</p>
<p>I&#8217;ve seen some people trying to resolve the issue by creating weird code in the .htaccess file or tweaking the .function file in WordPress theme. I&#8217;ve tried it, but none of them actually worked for me.</p>
<p>Ta-Dah! It was simpler than I thought. I deleted the <code>http:</code> part on my CSS file, and it worked like magic! So <strong>DO</strong> &#8220;//fonts.googleapis.com/css?family=XXX&#8221;, <strong>NOT</strong> &#8220;http://fonts.googleapis.com/css?family=XXX&#8221;</p>
<pre>
@import url(//fonts.googleapis.com/css?family=NAME_OF_YOUR_FONT_FAMILY);
</pre>
<p>I used &#8220;La Belle Aurore&#8221; font on my site, so here&#8217;s what I have. <code>@import url(//fonts.googleapis.com/css?family=La+Belle+Aurore);</code> I hope this method save your time as well. Good luck!</p><p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/responsive-google-adsense/" rel="bookmark" title="Responsive Google Adsense is Easy!">Responsive Google Adsense is Easy!</a></li>
<li><a href="https://blog.identitydesign.us/css-vertical-align-center/" rel="bookmark" title="CSS Vertical Align Center">CSS Vertical Align Center</a></li>
<li><a href="https://blog.identitydesign.us/remove-copyright-storefront/" rel="bookmark" title="Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme">Remove &#8216;Built with Storefront &#038; WooCommerce&#8217; with CSS lines on WordPress Storefront Theme</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/loading-webfonts-https-ssl/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Fonts Collection &#8211; Best for Web and Print Design</title>
		<link>https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/</link>
					<comments>https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/#comments</comments>
		
		<dc:creator><![CDATA[djemals]]></dc:creator>
		<pubDate>Tue, 25 Mar 2014 23:57:20 +0000</pubDate>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[Letter]]></category>
		<category><![CDATA[Type]]></category>
		<category><![CDATA[Wording]]></category>
		<guid isPermaLink="false">http://blog.identitydesign.us/?p=293</guid>

					<description><![CDATA[<p>I always look for GOOD Fonts for my design. I&#8217;ve been in the industry almost a decade, and with the experience, there are fonts more likely to use than others when designing web or print outs like posters, banners, and documents. Some are good for a headline of an article, and some are good for [&#8230;]</p>
<p>The post <a href="https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/">Fonts Collection – Best for Web and Print Design</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<p>The post <a href="https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/">Fonts Collection &#8211; Best for Web and Print Design</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/freebies-weight-loss-diet-health-website-design-mock-up-psd/" rel="bookmark" title="Freebies: Weight Loss Diet / Health Website Design Mock Up (PSD)">Freebies: Weight Loss Diet / Health Website Design Mock Up (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-grunge-poster-template/" rel="bookmark" title="Freebies: The Gloria Revival Grunge Poster Template">Freebies: The Gloria Revival Grunge Poster Template</a></li>
</ol>
</div>
]]></description>
										<content:encoded><![CDATA[<p>I always look for GOOD Fonts for my design. I&#8217;ve been in the industry almost a decade, and with the experience, there are fonts more likely to use than others when designing web or print outs like posters, banners, and documents. Some are good for a headline of an article, and some are good for copies. Most of them are FREE with personal/commercial use, so hope you enjoy my collection.</p>
<h2>Gotham</h2>
<p><span class="description">San-Serif, Condensed</span><br />
<a href="http://www.designsrock.com/free-gotham-font-download/"><img fetchpriority="high" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/gotham.jpg" alt="gotham" width="600" height="200" class="alignnone size-full wp-image-305" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/03/gotham.jpg 600w, https://blog.identitydesign.us/wp-content/uploads/2014/03/gotham-300x100.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /></a><a class="link-cta" href="http://www.designsrock.com/free-gotham-font-download/">FREE Download</a> Gotham family is all time my favorite. It&#8217;s great for headline and body copy.</p>
<h2>Bebas Neue</h2>
<p><span class="description">Condensed San-Serif, Uppercase Only</span><br />
<a href="http://www.fontsquirrel.com/fonts/download/bebas-neue"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/bebas.jpg" alt="bebas neue" width="600" height="200" class="alignnone size-full wp-image-306" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/03/bebas.jpg 600w, https://blog.identitydesign.us/wp-content/uploads/2014/03/bebas-300x100.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /></a>A sophisticated bold condensed gothic font for PC, Mac, &#038; Web . Highly recommended for titles.<br />
<a class="link-cta" href="http://www.fontsquirrel.com/fonts/download/bebas-neue">FREE Download</a> | Credit &#8220;Dharma Type&#8221;<br />
http://dharmatype.com/</p>
<h2>League Gothic</h2>
<p><span class="description">Condensed San-Serif</span><br />
<a href="https://www.theleagueofmoveabletype.com/league-gothic/download"><img decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/leaguegothic.jpg" alt="league gothic" width="600" height="200" class="alignnone size-full wp-image-314" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/03/leaguegothic.jpg 600w, https://blog.identitydesign.us/wp-content/uploads/2014/03/leaguegothic-300x100.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /></a><a class="link-cta" href="https://www.theleagueofmoveabletype.com/league-gothic/download">FREE Download</a></p>
<h2>Frontage</h2>
<p><span class="description">San-Serif, Uppercase only, for Headline and decorative type</span><br />
<a href="http://www.myfonts.com/fonts/jurizaech/frontage/"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/frontage.jpg" alt="frontage" width="600" height="200" class="alignnone size-full wp-image-310" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/03/frontage.jpg 600w, https://blog.identitydesign.us/wp-content/uploads/2014/03/frontage-300x100.jpg 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a><a class="link-cta" href="http://www.myfonts.com/fonts/jurizaech/frontage/">$55 at myfonts.com</a></p>
<h2>Helvetica Neue</h2>
<p><span class="description">San-Serif, Condensed to Extended, for body copy</span><br />
<a href="https://www.myfonts.com/fonts/linotype/neue-helvetica/"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/helveticaneue.jpg" alt="helvetica neue" width="600" height="200" class="alignnone size-full wp-image-312" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/03/helveticaneue.jpg 600w, https://blog.identitydesign.us/wp-content/uploads/2014/03/helveticaneue-300x100.jpg 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a><a class="link-cta" href="https://www.myfonts.com/fonts/linotype/neue-helvetica/">$39/each at myfonts.com</a></p>
<h2>Futura</h2>
<p><span class="description">San-Serif</span><br />
<a href="http://www.fontyukle.net/en/1,futura"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/futura.jpg" alt="futura" width="600" height="200" class="alignnone size-full wp-image-311" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/03/futura.jpg 600w, https://blog.identitydesign.us/wp-content/uploads/2014/03/futura-300x100.jpg 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a><a class="link-cta" href="http://www.fontyukle.net/en/1,futura">FREE Download</a></p>
<h2>Knockout</h2>
<p><span class="description">San-Serif, Condensed to Extended</span><br />
<a href="http://www.typography.com/fonts/knockout/styles"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/knockout.jpg" alt="knockout" width="600" height="200" class="alignnone size-full wp-image-313" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/03/knockout.jpg 600w, https://blog.identitydesign.us/wp-content/uploads/2014/03/knockout-300x100.jpg 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a></p>
<h2>Nexa</h2>
<p><span class="description">San-Serif &#038; Slab-Serif, Thin to Ultra thick</span><br />
<a href="http://fontfabric.com/downfont/nexa.zip"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/nexa.jpg" alt="nexa" width="600" height="200" class="alignnone size-full wp-image-315" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/03/nexa.jpg 600w, https://blog.identitydesign.us/wp-content/uploads/2014/03/nexa-300x100.jpg 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a><a class="link-cta" href="http://fontfabric.com/downfont/nexa.zip">Nexa &#8211; Download FREE Version</a><br />
<a class="link-cta" href="http://www.myfonts.com/fonts/font-fabric/nexa/">Nexa &#8211; Buy Full Version</a><br />
<a class="link-cta" href="http://fontfabric.com/downfont/nexaslab.zip">Nexa Slab &#8211; Download FREE Version</a><br />
<a class="link-cta" href="http://www.myfonts.com/fonts/font-fabric/nexa-slab/">Nexa Slab &#8211; Buy Full Version</a></p>
<hr>
<h2>SignPainter</h2>
<p><span class="description">Cursive Pen Script</span><br />
<a href="http://abc-font.com/font.php?font=SignPainter-HouseScript"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/fonts-signpainter.jpg" alt="SignPainter font" width="600" height="200" class="alignnone size-full wp-image-935" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/03/fonts-signpainter.jpg 600w, https://blog.identitydesign.us/wp-content/uploads/2014/03/fonts-signpainter-300x100.jpg 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a><a class="link-cta" href="http://abc-font.com/font.php?font=SignPainter-HouseScript">FREE Download</a></p>
<h2>Belinda</h2>
<p><span class="description">Cursive Handwriting Script</span><br />
<a href="https://www.linotype.com/1418804/belinda-family.html"><img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/belinda.jpg" alt="belinda" width="600" height="200" class="alignnone size-full wp-image-304" srcset="https://blog.identitydesign.us/wp-content/uploads/2014/03/belinda.jpg 600w, https://blog.identitydesign.us/wp-content/uploads/2014/03/belinda-300x100.jpg 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></a><a class="link-cta" href="https://www.linotype.com/1418804/belinda-family.html">$35 at Linotype.com</a><br />
A Handwriting &#038; fun cursive script for Mac &#038; PC</p>
<p><!--h2>Ostrich</h2>


<span class="description">San-Serif</span>
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/grey.gif" alt="grey" width="100" height="100" />



<h2>Raleway</h2>


<span class="description">Thin San-Serif</span>
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/grey.gif" alt="grey" width="100" height="100" />



<h2>Trend</h2>


<span class="description">San-Serif, Slab, Glyph</span>
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/grey.gif" alt="grey" width="100" height="100" />



<h2>Silverfake</h2>


<span class="description">Slab, Wide Serif</span>
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/grey.gif" alt="grey" width="100" height="100" />



<h2>Veener</h2>


<span class="description">Condensed San-Serif, Levels of Textures, Glyph, for Headline</span>
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/grey.gif" alt="grey" width="100" height="100" />



<h2>Thirsty Rough</h2>


<span class="description">Script, Texture, Glyph</span>
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/grey.gif" alt="grey" width="100" height="100" />



<h2>Wisdom Script AI</h2>


<span class="description">Script</span>
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/grey.gif" alt="grey" width="100" height="100" />




<h2>Mr Stalwart</h2>


<span class="description">Cursive Handwriting Script</span>
A bold & active cursive script for Mac & PC, Mr Stalwart.ttf
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/grey.gif" alt="grey" width="100" height="100" />



<h2>League Script Thin</h2>


<span class="description">Cursive Thin Script</span>
<img loading="lazy" decoding="async" src="https://blog.identitydesign.us/wp-content/uploads/2014/03/grey.gif" alt="grey" width="100" height="100" /--></p><p>The post <a href="https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/">Fonts Collection – Best for Web and Print Design</a> first appeared on <a href="https://blog.identitydesign.us">identity design</a>.</p><p>The post <a href="https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/">Fonts Collection &#8211; Best for Web and Print Design</a> appeared first on <a href="https://blog.identitydesign.us">identity design</a>.</p>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h3>Related posts:</h3><ol>
<li><a href="https://blog.identitydesign.us/loading-webfonts-https-ssl/" rel="bookmark" title="Resolved! Loading Your Google Fonts Over https (SSL) Sites">Resolved! Loading Your Google Fonts Over https (SSL) Sites</a></li>
<li><a href="https://blog.identitydesign.us/freebies-weight-loss-diet-health-website-design-mock-up-psd/" rel="bookmark" title="Freebies: Weight Loss Diet / Health Website Design Mock Up (PSD)">Freebies: Weight Loss Diet / Health Website Design Mock Up (PSD)</a></li>
<li><a href="https://blog.identitydesign.us/freebies-grunge-poster-template/" rel="bookmark" title="Freebies: The Gloria Revival Grunge Poster Template">Freebies: The Gloria Revival Grunge Poster Template</a></li>
</ol>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.identitydesign.us/fonts-collection-best-for-web-and-print-design/feed/</wfw:commentRss>
			<slash:comments>9</slash:comments>
		
		
			</item>
	</channel>
</rss>
