<?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>Gettin' My Geek On &#187; webdesign</title>
	<atom:link href="http://www.markstevens20.net/blog/tag/webdesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markstevens20.net/blog</link>
	<description>Ramblings on my experiments with Linux, networking, and collaboration aps</description>
	<lastBuildDate>Sat, 30 Jan 2010 01:23:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>CSS Formats for Code Presentation</title>
		<link>http://www.markstevens20.net/blog/2009/07/css-formats-for-code-presentation/</link>
		<comments>http://www.markstevens20.net/blog/2009/07/css-formats-for-code-presentation/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 03:42:52 +0000</pubDate>
		<dc:creator>Mark Stevens</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.markstevens20.net/blog/?p=187</guid>
		<description><![CDATA[I need to have some sections of code in my blog, as any good geek blog would. Here is what I added to my blog&#8217;s style sheet to support my code entries. In fact, the presentation of the css code uses the code definitions in the style sheet. Can you say recursion? /* section to [...]]]></description>
			<content:encoded><![CDATA[<p>I need to have some sections of code in my blog, as any good geek blog would.  Here is what I added to my blog&#8217;s style sheet to support my code entries.  In fact, the presentation of the css code uses the code definitions in the style sheet.  Can you say <a title="Google Easter Egg" href="http://www.google.com/#hl=en&amp;q=recursion&amp;aq=f&amp;oq=&amp;aqi=g10&amp;fp=QI0EuE94-gI" target="_blank">recursion</a>?</p>
<div class="code">
/* section to define the &#8216;code box&#8217; and text used to show computer output */<br />
.code {<br />
     font-family:&#8217;Courier New&#8217;, Courier, Monospace, Fixed;<br />
     line-height: .6em;<br />
     font-size: 110%;<br />
     white-space: pre;<br />
     border: 2px ridge #0f5384;<br />
     padding: .5em;<br />
     background-color: #fffeef;<br />
     color: #511211;<br />
     min-width: 10em;<br />
     overflow: auto;<br />
}</p>
<p>/* section to define text used to show computer input */<br />
.code b {<br />
     font-weight: 900;<br />
     color: #0f5384;<br />
}</p>
<p>/* section to define text used to show my comments within the code box */<br />
.code i  {<br />
    font-family: Verdana, Arial, Helvetica, sans-serif;<br />
    font-effect: italic;<br />
    white-space: normal;<br />
    line-height: 1em;<br />
}
</p></div>
<p>Then I apply the code format using &lt;div class=&#8221;code&#8221;&gt; and then, within that div section, use &lt;b&gt; to indicate text that is input to the system, and &lt;i&#038;gt to indicate text that is a comment I wrote in the code box. It&#8217;s nothing fantastic, but it&#8217;ll do the job.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markstevens20.net/blog/2009/07/css-formats-for-code-presentation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>XHTML and CSS example</title>
		<link>http://www.markstevens20.net/blog/2009/07/xhtml-and-css-example/</link>
		<comments>http://www.markstevens20.net/blog/2009/07/xhtml-and-css-example/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 22:12:52 +0000</pubDate>
		<dc:creator>Mark Stevens</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.markstevens20.net/blog/?p=105</guid>
		<description><![CDATA[I wanted to get a simple web page up on my hosted site, created by hand using a simple text editor; just a little project to learn the basics of xhtml and cascading style sheets. I&#8217;m a big advocate of the &#8220;learning-by-doing&#8221; mantra. I had done some work in html many years ago, so I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mandalatv.net/itp/drivebys/css/"><img alt="" src="/pics/boxmodel.png" title="Box Model from mandalatv.net" class="alignright" width="300" /></a>I wanted to get a simple web page up on my hosted site, created by hand using a simple text editor; just a little project to learn the basics of xhtml and cascading style sheets. I&#8217;m a big advocate of the &#8220;learning-by-doing&#8221; mantra.<br />
I had done some work in html many years ago, so I understood the concepts of markup languages and tagging.  It took a couple of weeks working in the evening (sometimes the late evening), but I was able to get a simple page established at <a href="http://markstevens20.net" target="_blank">markstevens20.net</a>.<br />
The following resources were very helpful:</p>
<ul>
<li><a href="http://www.wrox.com/WileyCDA/WroxTitle/Beginning-Web-Programming-with-HTML-XHTML-and-CSS-2nd-Edition.productCd-0470259310.html" target="_blank">Beginning Web Programming with HTML, XHTML, and CSS, 2nd edition by John Duckett,</a> courtesy of the local public library.</li>
<li><a href="http://www.w3schools.com/css/default.asp" target="_blank">w3schools.com CSS tutorial</a></li>
<li><a href="http://www.edtechblog.org/" target="_blank">http://www.edtechblog.org/</a> and many other talented css/xhtml/webdesign bloggers.</li>
<li><a href="http://www.w3.org/Style/CSS/" target="_blank">The w3 consortium css page</a>, official standards for all of the elements and properties completely documented.</li>
</ul>
<p>and a couple Firefox plug-ins that helped with web design:</p>
<ul>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/271" target="_blank">Colorzilla</a> (especially the eyedropper for converting colors to hex values)</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/539" target="_blank">MeasureIt</a>, a pixel ruler for measuring the size of elements.</li>
</ul>
<p>I won&#8217;t try to explain xhtml &#038; css in the post, but rather encourage those that are interested follow the links above and use almighty Google to find additional resources.  However, I do want to share the work that I&#8217;ve done as an example.  Here is a <a href="http://markstevens20.net/pages/example.html" target="blank">modified version on my homepage</a> and it&#8217;s <a href="http://markstevens20.net/pages/example.css" target="blank">associated style sheet</a>.  I&#8217;ve changed the color scheme to allow the individual elements to be seen better.  The text content is different too, but other than that, it is the same xhtml and css file. You can <a href="http://markstevens20.net/downloads/xhtmlcssexample.zip">download the xhtml and css files</a> here and experiment with them on your own home computer or use them as templates if you wish.  The downloaded files have extensive comments (maybe too many?) to explain what each element is doing for the page.</p>
<p>Learning xhtml and css is cheap and easy.  Free tutorrials are available on the web, free text editor software is available on all computers (such as Notepad/Wordpad in Windows), and you can view your work using a free web browser.  If you choose to explore xhtml/css on your own, I hope the references on the page are helpful to you.  Good luck with your endeavors! If you have found other xhtml/css sites helpful, please add them below as comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markstevens20.net/blog/2009/07/xhtml-and-css-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Webhost</title>
		<link>http://www.markstevens20.net/blog/2009/05/the-webhost/</link>
		<comments>http://www.markstevens20.net/blog/2009/05/the-webhost/#comments</comments>
		<pubDate>Wed, 20 May 2009 01:38:37 +0000</pubDate>
		<dc:creator>Mark Stevens</dc:creator>
				<category><![CDATA[Infrastructure]]></category>
		<category><![CDATA[socialmedia]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[webhosting]]></category>

		<guid isPermaLink="false">http://www.markstevens20.net/blog/?p=14</guid>
		<description><![CDATA[My first step was to pick a webhost.  It wasn&#8217;t hard, and there certainly are lots to choose from.  While I was trying to pick a domain name, I used all mighty Google to search for web hosting, which led me to http://webhostinggeeks.com/.  I was in the minimum budget category, as I have no intention [...]]]></description>
			<content:encoded><![CDATA[<p>My first step was to pick a webhost.   It wasn&#8217;t hard, and there certainly are lots to choose from.   While I was trying to pick a domain name, I used all mighty Google to <a href="http://www.google.com/search?source=ig&amp;hl=en&amp;rlz=&amp;=&amp;q=web+hosting&amp;btnG=Google+Search&amp;aq=f&amp;oq=" target="_blank">search for web hosting</a>, which led me to <a href="http://webhostinggeeks.com/" target="_blank">http://webhostinggeeks.com/</a>.  I was in the minimum budget category, as I have no intention of this turning into a high traffic revenue generating site.  Webhostinggeeks provided a nice simple overview of the options, features and prices.  It was difficult to find any one host to stand out.  Prices are all about the same and would cost me less than $100 USD for a year of hosting.  All boasted similar features.  Customer reviews were about equal, it seemed that they all had solid reviews, with a few ticked off vocal customers for each.  I couldn&#8217;t find anything to differentiate them.</p>
<p>It wasn&#8217;t until I started bookmarking the hosting sites on on my <a href="http://delicious.com/mdsrtp/webhosting">del.icio.us</a> page that I noticed a distinction.  While most of the sites listed on webhostinggeeks were bookmarked a few hundred times, Bluehost was bookmarked 10 times more often, over 3500 times!  An important rule of social media is to &#8220;trust the masses.&#8221; This may just be a volume decission, as it seems that Bluehost is the only host to crack the <a href="http://www.webhosting.info/webhosts/" target="_blank">top 50 webhosts</a>, out of the sites I bookmarked.</p>
<p>So a few weeks ago I bit the bullet and signed up for a site with Bluehost.  As for domain name, I chose markstevens20.net.  I tried to be more creative, but</p>
<ul>
<li>A) I&#8217;m not that creative and</li>
<li>B) Anything creative I did come up with, was already parked by someone else.  Annoying, isn&#8217;t it?</li>
</ul>
<p>But markstevens20.net suits me fine.  It&#8217;s easy to remember, albeit somewhat narcisistic, and I like that the 20 hints at 2.0.  Whether that&#8217;s web 2.0, enterprise 2.0 or just Mark Stevens 2.0, I&#8217;ll figure that out as I go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.markstevens20.net/blog/2009/05/the-webhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
