<?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>talking html Archives &#8902; Schaffen Creative</title>
	<atom:link href="https://www.schaffencreative.com/category/talking-html/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.schaffencreative.com/category/talking-html/</link>
	<description>Make. Manage. Achieve.</description>
	<lastBuildDate>Sat, 20 Feb 2021 02:22:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.1</generator>

<image>
	<url>https://www.schaffencreative.com/wp-content/uploads/2018/02/schaffen_creative-500x500-100x100.png</url>
	<title>talking html Archives &#8902; Schaffen Creative</title>
	<link>https://www.schaffencreative.com/category/talking-html/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Eps 38: CSS Positioning</title>
		<link>https://www.schaffencreative.com/talking-html/eps-38-css-positioning/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-38-css-positioning</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Sat, 20 Feb 2021 02:22:49 +0000</pubDate>
				<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<guid isPermaLink="false">https://www.schaffencreative.com/?p=2049</guid>

					<description><![CDATA[<p>The position property specifies the type of positioning method used for an element. There are five different position values: Static, Relative, Fixed, Absolute, Sticky Properties: top, bottom, left, right, z-index, clip (Clips an absolutely positioned element) Static HTML elements are positioned static by default. Static positioned elements are not affected by the top, bottom, left, [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-38-css-positioning/">Eps 38: CSS Positioning</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">The position property specifies the type of positioning method used for an element.</p>



<p class="wp-block-paragraph">There are five different position values: Static, Relative, Fixed, Absolute, Sticky</p>



<p class="wp-block-paragraph">Properties: top, bottom, left, right, z-index, clip (Clips an absolutely positioned element)</p>



<h2 class="wp-block-heading">Static</h2>



<p class="wp-block-paragraph">HTML elements are positioned static by default. Static positioned elements are not affected by the top, bottom, left, and right properties. An element with position: static; is not positioned in any special way; it is always positioned according to the normal flow of the page:</p>



<h2 class="wp-block-heading">Relative</h2>



<p class="wp-block-paragraph">positioned relative to its normal position. Setting the top, right, bottom, and left properties of a relatively-positioned element will cause it to be adjusted away from its normal position. Other content will not be adjusted to fit into any gap left by the element.</p>



<h2 class="wp-block-heading">Fixed</h2>



<p class="wp-block-paragraph">positioned relative to the viewport, which means it always stays in the same place even if the page is scrolled. The top, right, bottom, and left properties are used to position the element. A fixed element does not leave a gap in the page where it would normally have been located.</p>



<h2 class="wp-block-heading">Absolute</h2>



<p class="wp-block-paragraph">positioned relative to the nearest positioned ancestor (instead of positioned relative to the viewport, like fixed). However; if an absolute positioned element has no positioned ancestors, it uses the document body, and moves along with page scrolling.</p>



<h2 class="wp-block-heading">Sticky</h2>



<p class="wp-block-paragraph">positioned based on the user&#8217;s scroll position. A sticky element toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport &#8211; then it &#8220;sticks&#8221; in place (like position:fixed).</p>



<h2 class="wp-block-heading">Overlapping Elements</h2>



<p class="wp-block-paragraph">When elements are positioned, they can overlap other elements. The z-index property specifies the stack order of an element (which element should be placed in front of, or behind, the others). An element can have a positive or negative stack order. An element with greater stack order is always in front of an element with a lower stack order.</p>



<p class="wp-block-paragraph"><strong>Note:</strong> If two positioned elements overlap without a z-index specified, the element positioned last in the HTML code will be shown on top.</p>



<p class="wp-block-paragraph">Live Show on Twitch: <a href="https://twitch.tv/tommnorm" target="_blank" rel="noreferrer noopener">twitch.tv/tommnorm</a><br>YouTube: <a href="https://www.youtube.com/channel/UCtDzxDS1j6_5APr6bfQLQLQ" target="_blank" rel="noreferrer noopener">https://www.youtube.com/channel/UCtDzxDS1j6_5APr6bfQLQLQ</a><br>Twitter: @schaffencreate &amp; @tommnorman</p>



<pre class="wp-block-code"><code>&lt;html&gt;
	&lt;head&gt;
		&lt;link rel="stylesheet" href="screen.css"&gt;
	&lt;/head&gt;
<code>	&lt;body&gt;

		&lt;div id="box-1"&gt;
			&lt;h2&gt;BOX 1&lt;/h2&gt;
				&lt;div id="box-2"&gt;
					&lt;h2&gt;BOX 2&lt;/h2&gt;
						&lt;div id="box-3"&gt;
							&lt;h2&gt;BOX 3&lt;/h2&gt;
						&lt;/div&gt;
				&lt;/div&gt;
		&lt;/div&gt;
		&lt;div id="box-4"&gt;&lt;/div&gt;
		
	&lt;/body&gt;
&lt;/html&gt;</code></code></pre>



<pre class="wp-block-code"><code>/* CSS RESET https://dev.to/hankchizljaw/a-modern-css-reset-6p3 */
/* Box sizing rules */
*,*::before,*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul&#91;class],ol&#91;class] {
  padding: 0;
}

/* Remove default margin */
body,h1,h2,h3,h4,p,ul&#91;class],ol&#91;class],li,figure,figcaption,blockquote,dl,dd {
  margin: 0;
}

/* Reset default font size */
h1,h2,h3,h4,p,li,figcaption,blockquote,dl,dd {
	font-size: 10px;
}


/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul&#91;class],ol&#91;class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not(&#91;class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,button,textarea,select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* END CSS RESET */


#box-1 {
	display:block;
	border:1px solid #000;
	background: black;
	height: 500px;
	width:500px;
	margin: 10% 0 0 10%;
}
#box-1 h2 {
	font-size: 3em;
	color: white;
}
#box-2 {
	display:block;
	border:1px solid #000;
	background: white;
	height: 350px;
	width:350px;
}
#box-2 h2 {
	font-size: 3em;
	Color: black;
}
#box-3 {
	display:block;
	border:1px solid #000;
	background: purple;
	height: 175px;
	width:175px;
}
#box-3 h2 {
	font-size: 2.5em;
	color: white;
}

#box-4 {
	display:block;
	border:1px solid #000;
	background: orange;
	height: 1500px;
	width:500px;
	margin: 10% 0 0 10%;
}</code></pre>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-38-css-positioning/">Eps 38: CSS Positioning</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="https://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps38-CSS-Positioning.mp3" length="25622352" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 37: Welcome and WordPress Tutorial</title>
		<link>https://www.schaffencreative.com/talking-html/eps-37-welcome-and-wordpress-tutorial/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-37-welcome-and-wordpress-tutorial</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Sat, 30 Jan 2021 17:19:44 +0000</pubDate>
				<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[welcome]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://www.schaffencreative.com/?p=2038</guid>

					<description><![CDATA[<p>The first episode in quite a long time. The first 10 minutes or so are a general welcome statement and update while the last 35 mins are a tutorial on how to edit and update WordPress posts and pages. I&#8217;m a bit rusty so hopefully it&#8217;s not too hard on your ears. Look for more [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-37-welcome-and-wordpress-tutorial/">Eps 37: Welcome and WordPress Tutorial</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">The first episode in quite a long time. The first 10 minutes or so are a general welcome statement and update while the last 35 mins are a tutorial on how to edit and update WordPress posts and pages. I&#8217;m a bit rusty so hopefully it&#8217;s not too hard on your ears.</p>



<p class="wp-block-paragraph">Look for more shows coming soon.</p>



<p>WordPress and Gutenberg Tutorial by Packerland Websites: <a href="https://youtu.be/dKOgg7ULPB4">https://youtu.be/dKOgg7ULPB4</a><br>
Discord Channel: <a href="https://discord.gg/p5masyrFaW">https://discord.gg/p5masyrFaW</a><br>
Patreon Support: <a href="https://patreon.com">Coming Soon</a><br>
Twitter: @tommnorman &amp; @schaffencreate<br>
Website: <a href="https://schaffencreative.com">SchaffenCreative.com</a><br>
Packerland Websites: <a href="https://packerlandwebsites.com">PackerlandWebsites.com</a></p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-37-welcome-and-wordpress-tutorial/">Eps 37: Welcome and WordPress Tutorial</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="https://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps37-Welcome-and-WordPress-Tutorial.mp3" length="37581045" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 36: Document Object Model (DOM)</title>
		<link>https://www.schaffencreative.com/talking-html/eps-36-document-object-model-dom/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-36-document-object-model-dom</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Wed, 09 May 2018 00:52:50 +0000</pubDate>
				<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[document object model]]></category>
		<category><![CDATA[dom]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.schaffencreative.com/?p=528</guid>

					<description><![CDATA[<p>Document Object Model (DOM) Taken from w3schools.com &#8211; The W3C Document Object Model (DOM) is a platform and language-neutral interface that allows programs and scripts to dynamically access and update the content, structure, and style of a document.&#8221; The W3C DOM standard is separated into 3 different parts: Core DOM &#8211; standard model for all [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-36-document-object-model-dom/">Eps 36: Document Object Model (DOM)</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1>Document Object Model (DOM)</h1>
<p><b>Taken from </b><a href="https://www.w3schools.com/js/js_htmldom.asp"><b>w3schools.com</b></a><i><span style="font-weight: 400;"> &#8211; The W3C Document Object Model (DOM) is a platform and language-neutral interface that allows programs and scripts to dynamically access and update the content, structure, and style of a document.&#8221;</span></i></p>
<p><span style="font-weight: 400;">The W3C DOM standard is separated into 3 different parts:</span></p>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400;">Core DOM &#8211; standard model for all document types</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">XML DOM &#8211; standard model for XML documents</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">HTML DOM &#8211; standard model for HTML documents</span></li>
</ul>
<p><span style="font-weight: 400;">The HTML DOM is a standard </span><b>object</b><span style="font-weight: 400;"> model and </span><b>programming interface</b><span style="font-weight: 400;"> for HTML. It defines:</span></p>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400;">The HTML elements as </span><b>objects</b></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">The </span><b>properties</b><span style="font-weight: 400;"> of all HTML elements</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">The </span><b>methods</b><span style="font-weight: 400;"> to access all HTML elements</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">The </span><b>events</b><span style="font-weight: 400;"> for all HTML elements</span></li>
</ul>
<p><span style="font-weight: 400;">In other words:</span><b> The HTML DOM is a standard for how to get, change, add, or delete HTML elements.</b></p>
<p><span style="font-weight: 400;">Viewed as a hierarchical tree &#8211; image is in the w3schools link attached above</span></p>
<h3><span style="font-weight: 400; color: #0000ff;"> Twitter</span><br />
<span style="color: #0000ff;"> <a style="color: #0000ff;" href="https://www.twitter.com/schaffencreate"><span style="font-weight: 400;">@SchaffenCreate</span></a></span><br />
<span style="color: #0000ff;"> <a style="color: #0000ff;" href="https://www.twitter.com/tommnorman"><span style="font-weight: 400;">@tommnorman</span></a></span><br />
<span style="font-weight: 400; color: #0000ff;"> Website:</span><br />
<span style="color: #0000ff;"> <a style="color: #0000ff;" href="http://www.schaffencreative.com"><span style="font-weight: 400;">https://www.schaffencreative.com</span></a></span></h3>
<p>&nbsp;</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-36-document-object-model-dom/">Eps 36: Document Object Model (DOM)</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/eps36-document-object-model.mp3" length="6660354" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 35: Fixed Position Footer</title>
		<link>https://www.schaffencreative.com/talking-html/eps-35-fixed-position-footer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-35-fixed-position-footer</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Wed, 25 Apr 2018 22:39:38 +0000</pubDate>
				<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[fixed]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">http://www.schaffencreative.com/?p=523</guid>

					<description><![CDATA[<p>What is a fixed position footer? The concept of taking a footer that more than likely doesn’t sit at the bottom of a screen comfortably and forcing it to stay put at the bottom of the screen. This is ideal if you have information there that you would like people to have a constant view [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-35-fixed-position-footer/">Eps 35: Fixed Position Footer</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">What is a fixed position footer?</span></p>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400;">The concept of taking a footer that more than likely doesn’t sit at the bottom of a screen comfortably and forcing it to stay put at the bottom of the screen. </span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">This is ideal if you have information there that you would like people to have a constant view on. Ie, social links, navigation links, contact information</span></li>
</ul>
<p><span style="font-weight: 400;">&lt;footer id=”footer”&gt;</span><br />
<span style="font-weight: 400;">Content goes here.</span><br />
<span style="font-weight: 400;">&lt;/footer&gt;</span></p>
<p><span style="font-weight: 400;">#footer {</span><span style="font-weight: 400;"><br />
</span><span style="font-weight: 400;">   position:fixed;</span><span style="font-weight: 400;"><br />
</span><span style="font-weight: 400;">   left:0px;</span><span style="font-weight: 400;"><br />
</span><span style="font-weight: 400;">   bottom:0px;</span><span style="font-weight: 400;"><br />
</span><span style="font-weight: 400;">   Height:30px; &lt;!&#8211;Is it needed? Play around with it &#8211;&gt;</span><span style="font-weight: 400;"><br />
</span><span style="font-weight: 400;">   width:100%;</span><br />
<span style="font-weight: 400;">}</span></p>
<p><a href="https://css-tricks.com/couple-takes-sticky-footer/"><b>Flexbox &#8211; via CSS Tricks by Chris Coyier</b></a></p>
<h3><span style="font-weight: 400;">Twitter</span><br />
<span style="color: #3366ff;"><a style="color: #3366ff;" href="https://www.twitter.com/schaffencreate"><span style="font-weight: 400;">@SchaffenCreate</span></a></span><br />
<span style="color: #3366ff;"> <a style="color: #3366ff;" href="https://www.twitter.com/tommnorman"><span style="font-weight: 400;">@tommnorman</span></a></span></h3>
<h3><span style="font-weight: 400;">Website: </span><span style="color: #3366ff;"><a style="color: #3366ff;" href="http://www.schaffencreative.com"><span style="font-weight: 400;">https://www.schaffencreative.com</span></a></span></h3>
<p>&nbsp;</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-35-fixed-position-footer/">Eps 35: Fixed Position Footer</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps35-Fixed-Footer.mp3" length="7360001" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 34: Website SEO in 2018</title>
		<link>https://www.schaffencreative.com/talking-html/eps-34-website-seo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-34-website-seo</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Tue, 10 Apr 2018 22:40:24 +0000</pubDate>
				<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">http://www.schaffencreative.com/?p=513</guid>

					<description><![CDATA[<p>Website SEO Write your code correctly H1, h2, h3, p, table, use alt tag on images &#8211; 2 for 1 also impacts adaptability standards (screen readers and assistance devices Mobile first Biggest push and newest standards are trending towards (or in most cases already implemented) creating a mobile friendly and responsive website Tougher to do [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-34-website-seo/">Eps 34: Website SEO in 2018</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Website SEO</h2>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Write your code correctly</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">H1, h2, h3, p, table, use alt tag on images &#8211; 2 for 1 also impacts adaptability standards (screen readers and assistance devices</span></li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Mobile first</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Biggest push and newest standards are trending towards (or in most cases already implemented) creating a mobile friendly and responsive website</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Tougher to do using wordpress vs frameworks like Bootstrap, but always test your mobile views before clicking publish</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">DO NOT USE m. for your mobile site, make your site responsive (scalable)</span></li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Link building</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Find ways to get other websites to link to your site. If you are building websites for others the easiest way would be to add a “Designed and developed by” statement in the bottom corner of the site with a link back to you</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Write guest blog posts for other sites</span></li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Have good content</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Put enough on your page to get your point across.</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">A few sentences isn’t going to cut it</span></li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Make sure the content is worthwhile</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Images, videos, graphs etc</span></li>
</ul>
</li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Use a security certificate</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Google emphasizing that now</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Get one from your hosting service</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Could be free like dreamhost or 30$ like ipage for a basic certificate.</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">If you do any type of money collection on your page ie taking credit card numbers etc then splurge on the appropriate version. More expensive but gives peace of mind</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Not necessary if you are being a portal to services like PayPal</span></li>
</ul>
</li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Bounce Rate</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Make people want to stay on your site</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">The faster someone clicks off your site the more it will affect your SEO</span></li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Resources</span>
<ul>
<li style="font-weight: 400;"><span style="color: #000000;"><a style="color: #000000;" href="https://backlinko.com/seo-this-year"><span style="font-weight: 400;">The Definitive Guide To SEO in 2018</span></a></span></li>
<li style="font-weight: 400;"><span style="color: #000000;"><a style="color: #000000;" href="https://support.google.com/webmasters/answer/7451184?hl=en"><span style="font-weight: 400;">Search Engine Optimization (SEO) Starter Guide</span></a></span></li>
<li style="font-weight: 400;"><span style="color: #000000;"><a style="color: #000000;" href="https://www.branded3.com/blog/seo-ranking-factors-2018/"><span style="font-weight: 400;">SEO ranking factors in 2018</span></a></span></li>
</ul>
</li>
</ul>
<h3><span style="font-weight: 400; color: #000000;">Twitter</span><br />
<span style="color: #000000;"> <a style="color: #000000;" href="https://www.twitter.com/schaffencreate"><span style="font-weight: 400;">@SchaffenCreate</span></a></span><br />
<span style="color: #000000;"> <a style="color: #000000;" href="https://www.twitter.com/tommnorman"><span style="font-weight: 400;">@tommnorman</span></a></span></h3>
<h3><span style="font-weight: 400; color: #000000;"> Website:</span><br />
<span style="color: #000000;"> <a style="color: #000000;" href="http://www.schaffencreative.com"><span style="font-weight: 400;">https://www.schaffencreative.com</span></a></span></h3>
<p>&nbsp;</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-34-website-seo/">Eps 34: Website SEO in 2018</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/eps-34-website-seo-2018.mp3" length="10755496" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 33: Testing Sites</title>
		<link>https://www.schaffencreative.com/talking-html/eps-33-testing-sites/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-33-testing-sites</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Tue, 03 Apr 2018 00:16:37 +0000</pubDate>
				<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[testing]]></category>
		<guid isPermaLink="false">http://www.schaffencreative.com/?p=427</guid>

					<description><![CDATA[<p>The importance of testing sites in web development.</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-33-testing-sites/">Eps 33: Testing Sites</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2><span style="font-weight: 400;">Importance of a testing site</span></h2>
<ol>
<li style="font-weight: 400;"><span style="font-weight: 400;">You never want to put your code out on an active website if it hasn’t been tested first.</span>
<ol>
<li style="font-weight: 400;"><span style="font-weight: 400;">Most importantly &#8211; Can break any or all aspects of what is already out</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">May not show up</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Content may not be ready to go live, but you still want to see what it’s going to look like or stage it for release</span></li>
</ol>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400;">A couple different ways</span>
<ol>
<li style="font-weight: 400;"><span style="font-weight: 400;">Use a subdomain as your testing site ideal for hand-coded websites as well as wordpress sites (hand-coded sites is easier to transfer via ftp vs redoing the work for wordpress sites)</span>
<ol>
<li style="font-weight: 400;"><span style="font-weight: 400;">Schaffencreative.com would have a subdomain of testing.schaffencreative.com</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Do everything on the testing site while using a “coming soon” page or plugin on the real domain</span></li>
</ol>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Use </span><a href="https://github.com/"><span style="font-weight: 400;">GitHub</span></a><span style="font-weight: 400;"> to manage hand-coded work (useful links below)</span>
<ol>
<li style="font-weight: 400;"><a href="https://gist.github.com/Nilpo/8ed5e44be00d6cf21f22"><span style="font-weight: 400;">Using GIT to Manage a Live Website</span></a></li>
<li style="font-weight: 400;"><a href="https://www.upwork.com/hiring/development/what-is-github-and-why-should-your-digital-team-use-it/"><span style="font-weight: 400;">What is GITHub And Why Should Your Digital Team Use It.</span></a></li>
</ol>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Use a WordPress Plugin</span>
<ol>
<li style="font-weight: 400;"><span style="font-weight: 400;">I’ve never explored this option</span></li>
</ol>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Use your local machine (computer) to create and test your site</span>
<ol>
<li style="font-weight: 400;"><span style="font-weight: 400;">Should be for more experienced developers only</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Labor intensive to set up and get running</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400;">Resources;</span>
<ol>
<li style="font-weight: 400;"><a href="https://developer.mozilla.org/en-US/docs/Learn/Common_questions/set_up_a_local_testing_server"><span style="font-weight: 400;">Set up a local server</span></a></li>
<li style="font-weight: 400;"><a href="http://www.wpbeginner.com/wp-tutorials/how-to-create-a-local-wordpress-site-using-xampp/"><span style="font-weight: 400;">How to create a local WordPress site using XAMPP</span></a></li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
</ol>
<p><span style="font-weight: 400;">Other excellent resource: </span><a href="https://www.elegantthemes.com/blog/tips-tricks/how-to-create-a-wordpress-staging-site"><span style="font-weight: 400;">How to Create a WordPress Staging Site for All Your WordPress Testing Needs</span></a><br />
<span style="font-weight: 400;">To sum up: ALWAYS TEST YOUR CODE FIRST</span></p>
<h4><span style="font-weight: 400;">Twitter</span><br />
<span style="color: #3366ff;"><a style="color: #3366ff;" href="https://www.twitter.com/schaffencreate"><span style="font-weight: 400;">@SchaffenCreate</span></a></span><br />
<span style="color: #3366ff;"> <a style="color: #3366ff;" href="https://www.twitter.com/tommnorman"><span style="font-weight: 400;">@tommnorman</span></a></span></h4>
<h4><span style="font-weight: 400;">Website:</span><br />
<span style="color: #3366ff;"><a style="color: #3366ff;" href="http://www.schaffencreative.com"><span style="font-weight: 400;">https://www.schaffencreative.com</span></a></span></h4>
<p>&nbsp;</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/eps-33-testing-sites/">Eps 33: Testing Sites</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/talking-html-eps-33.mp3" length="7596647" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 32: Custom WordPress Homepage</title>
		<link>https://www.schaffencreative.com/talking-html/394/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=394</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Tue, 20 Mar 2018 00:23:27 +0000</pubDate>
				<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[homepage]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">http://www.schaffencreative.com/?p=394</guid>

					<description><![CDATA[<p>Steps: 1.)    Login via FTP 2.)    Find the main index page of your theme 3.)    Download via FTP SAVE THE ORIGINAL COPY AS A SEPARATE FILE SO YOU CAN EASILY REPLACE ANY CHANGES/ERRORS 4.)    Edit page accordingly. For example:       Remove sidebar code      Remove main page code       Add new sections using html – basic HTML, Bootstrap [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/394/">Eps 32: Custom WordPress Homepage</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400; color: #000000;">Steps:</span><br />
<span style="font-weight: 400; color: #000000;"> 1.)    Login via FTP</span><br />
<span style="font-weight: 400; color: #000000;"> 2.)    Find the main index page of your theme</span><br />
<span style="font-weight: 400; color: #000000;"> 3.)    Download via FTP</span></p>
<ol>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">SAVE THE ORIGINAL COPY AS A SEPARATE FILE SO YOU CAN EASILY REPLACE ANY CHANGES/ERRORS</span></li>
</ol>
<p><span style="font-weight: 400; color: #000000;">4.)    Edit page accordingly. For example:</span></p>
<ol>
<li><span style="font-weight: 400; color: #000000;">       Remove sidebar code</span></li>
<li><span style="font-weight: 400; color: #000000;">      Remove main page code</span></li>
<li><span style="font-weight: 400; color: #000000;">       Add new sections using html – basic HTML, Bootstrap or any other framework compatible with WordPress</span></li>
<li><span style="font-weight: 400; color: #000000;">      Test your changes, experiment with removing different sections</span></li>
<li><span style="font-weight: 400; color: #000000;">      Search online for tutorials on how to utilize WordPress code to its fullest extent</span></li>
</ol>
<p><span style="font-weight: 400; color: #000000;">5.)    Save document as front-page.php</span></p>
<ol>
<li><span style="font-weight: 400; color: #000000;">       Wordpress looks for front-page.php if it exists and uses that as home</span></li>
</ol>
<p><span style="font-weight: 400; color: #000000;">6.)    Upload new front-page document to the root of your wordpress site where index.php lives</span><br />
<span style="font-weight: 400; color: #000000;"> 7.)    Login to wordpress</span><br />
<span style="font-weight: 400; color: #000000;"> 8.)    Go to pages</span></p>
<ol>
<li><span style="font-weight: 400; color: #000000;">Create a new page</span></li>
<li><span style="font-weight: 400; color: #000000;"> Call it whatever you want</span></li>
</ol>
<p><span style="font-weight: 400; color: #000000;">9.)    Go to your settings section.</span></p>
<ol>
<li><span style="font-weight: 400; color: #000000;">       In settings there is an option to select a specific home page and a specific blog page.</span></li>
</ol>
<p><span style="font-weight: 400; color: #000000;">10.) Select whatever page you created as your specific  home page</span><br />
<span style="font-weight: 400; color: #000000;"> 11.) DON’T FORGET TO SAVE YOUR SETTINGS</span><br />
<span style="font-weight: 400; color: #000000;"> 12.) You are now ready to go to your created page and add content.</span><br />
<span style="font-weight: 400; color: #000000;"> Next week I’ll discuss how to add multiple editable sections to your page editor so you can work around custom content, or simply just have separate chunks of content/code.</span></p>
<h3><span style="font-weight: 400; color: #000000;">Twitter</span><br />
<span style="color: #0000ff;"> <a style="color: #0000ff;" href="https://www.twitter.com/schaffencreate"><span style="font-weight: 400;">@SchaffenCreate</span></a></span><br />
<span style="color: #0000ff;"> <a style="color: #0000ff;" href="https://www.twitter.com/tommnorm"><span style="font-weight: 400;">@tommnorm</span></a></span></h3>
<h3><span style="font-weight: 400; color: #000000;">Website:</span><br />
<span style="color: #0000ff;"> <a style="color: #0000ff;" href="https://www.schaffencreative.com"><span style="font-weight: 400;">https://www.schaffencreative.com</span></a></span></h3>
<p>The post <a href="https://www.schaffencreative.com/talking-html/394/">Eps 32: Custom WordPress Homepage</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps32-CustomWordPressHomepage.mp3" length="6689166" type="audio/mpeg" />

			</item>
		<item>
		<title>Podcast Update</title>
		<link>https://www.schaffencreative.com/talking-html/podcast-update/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=podcast-update</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Tue, 20 Mar 2018 00:18:15 +0000</pubDate>
				<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<guid isPermaLink="false">http://www.schaffencreative.com/?p=397</guid>

					<description><![CDATA[<p>This is a brief update on the future of the podcast, my brand (TNPW Design) and projects coming down the road.</p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/podcast-update/">Podcast Update</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="color: #000000;">This is a brief update on the future of the podcast, my brand (TNPW Design) and projects coming down the road.</span></p>
<p>The post <a href="https://www.schaffencreative.com/talking-html/podcast-update/">Podcast Update</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/PodcastUpdate.mp3" length="5133514" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 31: SASS MixIn &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/eps-31-sass-mixin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-31-sass-mixin</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Mon, 06 Mar 2017 16:46:48 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[SASS]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=328</guid>

					<description><![CDATA[<p>A mixin allows developers to create reusable CSS blocks. This helps avoiding writing repetitive code. Also allows to make quick changes without searching code for every instance. @mixin image-rotate { margin: 20px auto 0 auto; -moz-transition: all 0.8s ease-in-out; -webkit-transition: all 0.8s ease-in-out; -o-transition: all 0.8s ease-in-out; -ms-transition: all 0.8s ease-in-out; transition: all 0.8s ease-in-out; [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-31-sass-mixin/">Eps 31: SASS MixIn &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">A mixin allows developers to create reusable CSS blocks. This helps avoiding writing repetitive code. Also allows to make quick changes without searching code for every instance.</span></p>
<p><code><br />
@mixin image-rotate {<br />
margin: 20px auto 0 auto;<br />
-moz-transition: all 0.8s ease-in-out;<br />
-webkit-transition: all 0.8s ease-in-out;<br />
-o-transition: all 0.8s ease-in-out;<br />
-ms-transition: all 0.8s ease-in-out;<br />
transition: all 0.8s ease-in-out;<br />
}</code><br />
<code><br />
@mixin image-rotate-hover {<br />
-moz-transform: rotate(360deg);<br />
-webkit-transform: rotate(360deg);<br />
-o-transform: rotate(360deg);<br />
-ms-transform: rotate(360deg);<br />
transform: rotate(360deg);<br />
}</code><br />
<code><br />
img#norm {<br />
@include image-rotate;<br />
}</code><br />
<code><br />
img#norm:hover{<br />
@include image-rotate-hover;<br />
}</code></p>
<p><a href="https://www.sitepoint.com/sass-basics-the-mixin-directive/"><strong><span style="color: #ff0000;">Sitepoint example</span></strong></a></p>
<p><span style="font-weight: 400;">A mixin can take Sass data values as arguments. These values are specified when you define the mixin and given when you </span><span style="font-weight: 400;">@include</span><span style="font-weight: 400;"> the mixin. The arguments are then passed to the mixin as variables. Arguments are included in a comma separated list enclosed in parentheses after the mixin name.</span><br />
<code><br />
@mixin headline ($color, $size) {<br />
color: $color;<br />
font-size: $size;<br />
}</code><br />
<code><br />
h1 {<br />
@include headline(green, 12px);<br />
}</code><br />
<code><br />
h1 {<br />
color: green;<br />
font-size: 12px;<br />
}<br />
</code><br />
<code><br />
h2 {<br />
@include headline(red, 10px);<br />
}</code><br />
<code><br />
h2 {<br />
color: red;<br />
font-size: 10px;<br />
}<br />
</code><br />
<code><br />
@mixin border-radius($radius) {<br />
-webkit-border-radius: $radius;<br />
-moz-border-radius: $radius;<br />
-ms-border-radius: $radius;<br />
border-radius: $radius;<br />
}</code></p>
<p><span style="font-weight: 400;">Compiling program &amp; link (</span><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://koala-app.com/"><span style="font-weight: 400;">Koala</span></a></span><span style="font-weight: 400;">)</span></p>
<p><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.codecademy.com/learn/learn-sass"><span style="font-weight: 400;">Where to learn about SASS &#8211; </span></a><a style="color: #ff0000;" href="http://sass-lang.com/"><span style="font-weight: 400;">http://sass-lang.com/</span></a></span></p>
<p><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.codecademy.com/learn/learn-sass"><span style="font-weight: 400;">Codeacademy</span></a></span><span style="font-weight: 400;"> has a SASS class</span></p>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tommnorman"><b>@tommnorman</b></a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tnpwdesign"><b>@tnpwdesign</b></a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.tnpwdesign.com/"><b>TNPWDesign.com</b></a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.webdevpod.com/"><b>WebDevPod.com</b></a></span></h4>
<p>&nbsp;</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-31-sass-mixin/">Eps 31: SASS MixIn &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps31_SASS_MixIn.mp3" length="21790763" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 30: SASS Basics &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/eps-30-sass-basics/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-30-sass-basics</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Tue, 28 Feb 2017 22:45:09 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[SASS]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=298</guid>

					<description><![CDATA[<p>What is SASS? Considered an extension of CSS. I consider it a streamlined version of CSS. How it works Set up on your personal system &#8211; I use Koala to compile my code Done locally then uploaded to the server via Filezilla Create a .SCSS file Write ANY CSS code as you normally would Add [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-30-sass-basics/">Eps 30: SASS Basics &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>What is SASS?</h2>
<p>Considered an extension of CSS. I consider it a streamlined version of CSS.</p>
<h2>How it works</h2>
<ul>
<li>Set up on your personal system &#8211; I use Koala to compile my code
<ul>
<li>Done locally then uploaded to the server via Filezilla</li>
</ul>
</li>
<li>Create a .SCSS file</li>
<li>Write ANY CSS code as you normally would</li>
<li>Add the SASS styling code as you see fit
<ul>
<li>variables</li>
<li>mixins</li>
<li>Code Nesting
<ul>
<li>Putting code inside of code</li>
</ul>
</li>
<li>imports
<ul>
<li>Get into it in a future eps</li>
</ul>
</li>
</ul>
</li>
<li>Save file</li>
<li>Compile code
<ul>
<li>may do so automatically once SCSS file is saved.</li>
<li>Compiling transforms your SCSS file into a CSS file</li>
</ul>
</li>
</ul>
<h2>Benefits</h2>
<ul>
<li>Streamline CSS writing &#8211; The one change will be distributed accross to all the corresponding instances of whatever it is you changed.</li>
</ul>
<h2>Negatives</h2>
<ul>
<li>You have to learn how to use SASS</li>
<li>You have to figure out how to get it to work on your computer, which can be a feat if you aren&#8217;t Computer savvy</li>
</ul>
<h2>Variables</h2>
<ul>
<li>Not usable in standard CSS</li>
<li>SASS integrates a way to create variables which then translates to regular CSS when compiled</li>
</ul>
<p><code><br />
$primary-color: #113e6d; /* BREWER BLUE */<br />
$secondary-color: #c1c4c4; /* COWBOY GRAY */<br />
$tertiary-color: #ffbf00; /* PACKER GOLD */<br />
$quaternary-color: #294239; /* PACKER GREEN */<br />
$quinary-color: #b70101; /* BADGER RED */<br />
$font-stack1: 'Merienda One', cursive;<br />
$font-stack2: 'Kite One', sans-serif;<br />
$font-stack3: 'Sintony', sans-serif;</code></p>
<p>body {<br />
background-color: $primary-color;<br />
font-family: $font-stack3;<br />
font-size: 62.5%;<br />
}</p>
<p>#center {<br />
margin: 0 auto;<br />
background-color: $secondary-color;<br />
width: 800px;<br />
}</p>
<p>Compiling program &amp; link (<span style="color: #ff0000;"><a style="color: #ff0000;" href="http://koala-app.com/">Koala</a></span>)</p>
<p><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.codecademy.com/learn/learn-sass">Where to learn about SASS &#8211; </a><a style="color: #ff0000;" href="http://sass-lang.com/">http://sass-lang.com/</a></span></p>
<p><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.codecademy.com/learn/learn-sass">Codeacademy</a></span> has a class</p>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tommnorman">@tommnorman</a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tnpwdesign">@tnpwdesign</a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.tnpwdesign.com">TNPWDesign.com</a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.webdevpod.com">WebDevPod.com</a></span></h4>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-30-sass-basics/">Eps 30: SASS Basics &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps30_SASS.mp3" length="18360154" type="audio/mpeg" />

			</item>
	</channel>
</rss>
