<?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>Atypical Homeschool&#187; HTML and CSS</title>
	<atom:link href="http://atypicalhomeschool.net/category/tutorials/html-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://atypicalhomeschool.net</link>
	<description>my personal space</description>
	<lastBuildDate>Thu, 26 Jan 2012 02:34:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Stylin&#8217;</title>
		<link>http://atypicalhomeschool.net/site-news/stylin/</link>
		<comments>http://atypicalhomeschool.net/site-news/stylin/#comments</comments>
		<pubDate>Sat, 21 Jan 2006 05:39:49 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://atypicalhomeschool.net/site-news/stylin/</guid>
		<description><![CDATA[I haven&#8217;t made the time to write a succinct blog entry today. I had it in mind when I sat down earlier this afternoon. What I got caught up in was re-styling the WordPress 2.0 Admin Panel. Being an unschooler at heart, I mostly didn&#8217;t give up on it until I had most of it [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t made the time to write a succinct blog entry today. I had it in mind when I sat down earlier this afternoon. What I got caught up in was re-styling the WordPress 2.0 Admin Panel. Being an unschooler at heart, I mostly didn&#8217;t give up on it until I had most of it done. Andrea and I had discussed working away at changing it over the next couple weeks. And she had started it yesterday. Supper or something had interferred with the whole process. While it was still usable, the panel wasn&#8217;t very Ron-friendly for writing. I did those 3 posts last night. But today, the thought of using it again just got me all distracted <img src='http://atypicalhomeschool.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Anyway, here is the original panel where you would write an entry in WP 2.0:</p>
<p><img src="http://atypicalhomeschool.net/gallery/albums/userpics/10001/normal_origpanel.jpg" alt="The original admin panel" title="The original admin panel" /></p>
<p>And here is the new version: (It&#8217;s worth noting that I only changed the stylesheet.)</p>
<p><img src="http://atypicalhomeschool.net/gallery/albums/userpics/10001/normal_newpanel.jpg" alt="The new admin panel" title="The new admin panel" /></p>
<p>Unofficial poll: Which one is easier on the eyes?</p>]]></content:encoded>
			<wfw:commentRss>http://atypicalhomeschool.net/site-news/stylin/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Making a simple web page</title>
		<link>http://atypicalhomeschool.net/tutorials/making-a-simple-web-page/</link>
		<comments>http://atypicalhomeschool.net/tutorials/making-a-simple-web-page/#comments</comments>
		<pubDate>Mon, 16 Jan 2006 12:50:41 +0000</pubDate>
		<dc:creator>andrea</dc:creator>
				<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://atypicalhomeschool.net/?p=72</guid>
		<description><![CDATA[There are many good websites out there to tell you all you&#8217;ll ever need to know about making web pages, but some of them are either hard to understand, too flashy, or the examples aren&#8217;t really relevant to what you might want to do. This tutorial is all about making a simple web page with [...]]]></description>
			<content:encoded><![CDATA[<p>There are many good websites out there to tell you all you&#8217;ll ever need to know about making web pages, but some of them are either hard to understand, too flashy, or the examples aren&#8217;t really relevant to what you might want to do.</p>
<p>This tutorial is all about making a simple web page with text and graphic links to places that you, your younger siblings (if you are a <abbr title="Home Educated Kid">HEK</abbr>) or your children (if you&#8217;re a <abbr title="Home Educating Parent">HEP</abbr>) frequently visit. It is also known as a portal page.<br />
<span id="more-72"></span></p>
<p><strong>Step 1</strong>: Building the framework of the page.</p>
<p>On your computer, open up Notepad or a similar text editor. I like to use Notepad because I can better control exactly what gets stuck in the page behind the scenes. First, we have to tell the browser that this is an HTML document, so we type this:</p>
<p><code> &lt;html&gt;</code></p>
<p>Almost every HTML tag has a matching closing tag, so skip down a few spaces and type this:</p>
<p><code> &lt;/html&gt;</code></p>
<p>Now when a web browser looks at this file, it knows that everything between these tags will be displayed in a special manner. But even better, everything that you want to be displayed in the main body of your webpage goes between two matching tags called (you guessed it) BODY.</p>
<p>Your web page bones should now look like this:</p>
<p><code> &lt;html&gt;<br />
    &lt;body&gt;</p>
<p>   &lt;/body&gt;<br />
&lt;/html&gt; </code></p>
<p><strong>Step 2</strong>: Giving your page a title.</p>
<p>Every page needs a title so the reader knows what it is about. If you&#8217;re making this portal page for small children, a title helps their reading skills, too.</p>
<p>Right after the first BODY tag, place a heading tag like this:</p>
<p>&lt;h1&gt;  </p>
<p>The h1 makes the letters nice and big and keeps them on their own line. Type in whatever you want for a title like &#8220;My Webpage&#8221; and add the matching end tag. It should now look like this:</p>
<p>&lt;h1&gt; My Webpage &lt;/h1&gt;  </p>
<p>If you want the letters slightly smaller, try using h2 or h3. </p>
<p><strong>Step 3</strong> and continuously: Saving your work.</p>
<p>This is probably a good time to save all your work to a file. Click &#8220;save&#8221; from the menu in Notepad, and call the file something meaningful, like &#8220;mywebpage&#8221;. Be sure to save this file with an HTML extension and not a .txt. It&#8217;s also handy to save it right onto your desktop. Now minimize the Notepad window by clicking on that little minus sign up in the top right corner. There should be a webpage icon right there on your desktop, with the words &#8220;mywebpage&#8221;. Clicking on it should open it up in your brower window, and you&#8217;ll see a broad expanse of white webpage with your title in big letters at the top.</p>
<p>Cool, huh?</p>
<p>Let&#8217;s switch back to our file in Notepad. Click on it down there on the status bar, and we&#8217;ll see what we&#8217;ve accomplished so far. It should look something like this:</p>
<p><code> &lt;html&gt;<br />
    &lt;body&gt;<br />
&lt;h1&gt; My Webpage &lt;/h1&gt;<br />
   &lt;/body&gt;<br />
&lt;/html&gt; </code></p>
<p><strong>Step 4:</strong> Adding some links.</p>
<p>A web page is just some text and wouldn&#8217;t be any fun without somewhere to click, so here&#8217;s how to make that magic. You&#8217;ll need two things; the URL and whatever title you want to give the link.</p>
<p>The code to make your text &#8220;clickable&#8221; looks like this:</p>
<p>&lt;a href=&#8221;<a href="http://where-you-want-to-go.com&#8221;&#038;gt" rel="nofollow">http://where-you-want-to-go.com&#8221;&#038;gt</a>; Click here on this text! &lt;/a&gt; </p>
<p>Note this has a few parts: the beginning of the tag (the a href part), the URL of the page (close the tag), whatever text or the tile of the page to click, and the ending tag.</p>
<p>That is how you make a link. Put few links on one page, and now you have your very own portal page. If you have saved onto your desktop like described above, you have an easy, fast and relatively safer way to get to your (or your children&#8217;s) favorite Internet sites.</p>
<p><strong>Step 5:</strong> Minor formatting.</p>
<p>Now, you don&#8217;t just want a whole string of links, you may want to add some descriptive text. How do you get to the next line? How do you make a paragraph? Sure, you can format it in Notepad, but we need to tell the browser what to do.</p>
<p>To get to a new line, you type the break tag. This is a self-contained tag, meaning it has no matching end tag, so the new rules are to make it self-closing. It looks like this:</p>
<p> &lt;br /&gt;</p>
<p>Note the space then the closing bracket.</p>
<p>In action, it may looke like this:</p>
<p>This is my first line of text. &lt;br /&gt;<br />
I want this text on the next line. &lt;br /&gt;</p>
<p>The browser makes it look like this:</p>
<p>This is my first line of text.<br />
I want this text on the next line.</p>
<p>Let&#8217;s say we want a bit more space, say, between paragraphs of text. I&#8217;m glad you asked, because we&#8217;re up to the paragraph tag.</p>
<p> &lt;p&gt; This is a paragraph. It has many sentences.  They usually follow the same train of thought, but mine tend to be a bit rambly. &lt;/p&gt;</p>
<p>Looking under the hood at the web page we are building, it could look a lot like this:</p>
<p><code> &lt;html&gt;<br />
    &lt;body&gt;<br />
&lt;h1&gt; My Webpage &lt;/h1&gt;<br />
&lt;a href="http://atypicalhomeschool.net/"&gt;Best homeschooling blog ever&lt;/a&gt;. &lt;br /&gt;<br />
Ron and Andrea sure are funny. And they have some interesting things to say about homeschooling. &lt;br /&gt;<br />
&lt;p&gt; Andrea has her own blog &lt;a href="http://atypicalife.net/blog"&gt;here.&lt;/a&gt;She writes funny stories about everyday life. Sometimes she makes me cry, though. &lt;/p&gt;<br />
   &lt;/body&gt;<br />
&lt;/html&gt; </code></p>
<p>You can probably imagine how that web page looks. That might be enough to get you started and I hope to encourage you to keep learning. In the next installment I&#8217;ll discuss images and making things look pretty, unless you figure out how to do that by then. Here&#8217;s a handy dandy <a href="http://www.w3schools.com/tags/default.asp">HTML tag reference chart</a> to get you going. </p>]]></content:encoded>
			<wfw:commentRss>http://atypicalhomeschool.net/tutorials/making-a-simple-web-page/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Creating a Banner Image</title>
		<link>http://atypicalhomeschool.net/tutorials/html-css/creating-a-banner-image/</link>
		<comments>http://atypicalhomeschool.net/tutorials/html-css/creating-a-banner-image/#comments</comments>
		<pubDate>Mon, 12 Dec 2005 01:26:07 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[GIMP]]></category>
		<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://atypicalhomeschool.net/?p=134</guid>
		<description><![CDATA[I&#8217;ll take you through the steps I followed in creating the poinsetta banner image and explain how I chose the colours for the &#8216;Atypical Christmas&#8217; WordPress Theme. The only tool I used was The Gimp. I edited the Cascading Style Sheet using the WordPress admin panel and edited the theme &#8216;live&#8217; (look under Presentation->Theme Editor->Stylesheet). [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll take you through the steps I followed in creating the poinsetta banner image and explain how I chose the colours for the &#8216;Atypical Christmas&#8217; WordPress Theme.</p>
<p>The only tool I used was <a href="http://www.gimp.org">The Gimp</a>. I edited the Cascading Style Sheet using the <a href="http://wordpress.org">WordPress</a> admin panel and edited the theme &#8216;live&#8217; (look under Presentation->Theme Editor->Stylesheet).<br />
<span id="more-134"></span></p>
<p>Step #1:</p>
<p>I chose the image. This is the what the original image looked like. If you would like to follow the tutorial, you can <a href="http://atypicalhomeschool.net/gallery/displayimage.php?album=4&#038;pos=5">view the image</a> in our <a href="http://atypicalhomeschool.net/gallery/">gallery</a> you should be able to save the image to your computer.</p>
<p><img src="http://atypicalhomeschool.net/gallery/albums/userpics/10001/normal_PC040127.JPG" title="A smaller version of the original image" alt="A smaller version of the original image" /></p>
<p>Step #2:</p>
<p>If you have a newer version of Windows, you should be able to right click on the image in Windows Explorer and Open With&#8230; gimp-win-remote. This will open the image in GIMP. If you do not have that option on your context menu, then you can open GIMP and open the image using Open on the File menu. Unless you have a monitor with a much larger resolution than mine, GIMP will set the zoom on the image to 50 or 66%. It will look something like this:</p>
<p><img src="http://atypicalhomeschool.net/gallery/albums/userpics/10001/normal_original.jpg" alt="The image loaded in GIMP." title="The image loaded in GIMP." /></p>
<p>A quick note I&#8217;ll make here is that if you make a mistake in GIMP, it is no big deal. You can back out of any operation by pressing Ctrl-Z (or using undo on the Edit menu).</p>
<p>Step #3:</p>
<p>Notice that there is a low spot of the background in the top right of the red poinsetta and high point in the background where the poinsettas come together at the bottom. To maximize the area of the photo available to be included in the banner, it would be nice if we could crop a rectangle out of image on an angle. GIMP doesn&#8217;t allow us to do that. BUT, it does allow us to rotate the image. So, that&#8217;s what I did. I rotated a -10 degrees. You can find rotate under the Tools menu (Tools->Transform Tools->Rotate). The resultant image looked like this:</p>
<p><img src="http://atypicalhomeschool.net/gallery/albums/userpics/10001/normal_firstcrop.jpg" alt="The image after rotation -10 degrees." title="The image after rotation -10 degrees." /></p>
<p>The checkerboard looking area in the top left corner is the area of the new image which is transparent. This is because the original image was rotated off of that area.</p>
<p>Step #4:</p>
<p>Chose the top left corner of the portion of the image that you want to be your banner image. The point I selected is shown with the white diamond in the red poinsetta in the image above. You can see it&#8217;s position in the bottom left corner of the screen shot. It was 220 pixels from the left of the picture and 400 from the top.</p>
<p>To make that point the top left of the image, I resized the image canvas under the Image menu (Image->Canvas Size&#8230;). Here you have to do a bit of math. The original canvas is 1600 pixels wide by 1200 high. I wanted to crop 400 off the top and 220 off the left. So, the new canvas width is 1600 &#8211; 220 = 1380 and the new height is 1200 &#8211; 400 = 800. </p>
<p>Once in the canvas size dialog, the first thing to do is click on the button that looks like it has 3 links of a chain on it. That button locks and unlocks the maintain aspect ratio option. The aspect ratio is the ratio of the width to the height. If the aspect ratio is locked then the new size of the canvas must have the same ratio as the original canvas size (4/3). Since the final size of the canvas from this operation is not going to be 4/3 then we have to unlock the ratio.</p>
<p>With the aspect ratio unlocked enter the new width in the X (1380) and Y (800). Below those 2 settings are the offset of the X and Y. You can use these to position the top left corner of the new canvas. To move into the image use negative values for the X and Y of the offset. Enter the new X (-220) and Y (-400) offset. The canvas size dialog has a preview area which will show the resulting canvas using a thin rectangular line.</p>
<p>Complete the operation by clicking the Resize button. The result looked something like this:</p>
<p><img src="http://atypicalhomeschool.net/gallery/albums/userpics/10001/normal_lastcrop.jpg" alt="After the first crop" title="After the first crop" /></p>
<p>Step #5:</p>
<p>In the above image, there is the checked area in the bottom right of the image. It is transparent for the same reason as the top left was earlier in the tutorial.</p>
<p>If you look toward the right of the image, I&#8217;ve marked the bottom right corner of the area that I wanted to include in the banner with a black diamond. This time the canvas resize is much easier because I wanted the finished canvas to come from the top left of the image. As it turns out, the banner size is 1250 pixels wide and 250 high.</p>
<p>Go back into the canvas resize option, unlock the aspect ratio and enter the new canvas size X (1250) and Y(250). Do not enter anything in the offset X and Y. Just click the resize button.</p>
<p>The resultant image looked something like this:</p>
<p><img src="http://atypicalhomeschool.net/gallery/albums/userpics/10001/b4scale.jpg" alt="After cropping" title="After cropping" /></p>
<p>Step #6:</p>
<p>The last thing I did with the image is resize it. I wanted the banner to be 200 pixels high. I found that option under the image menu (Image->Scale image). To produce the image below, I changed the Y size to 200 pixels. GIMP automatically changed the X to 1000 pixels (because the aspect ratio is locked). In the banner at the top of the page, I believe I unlocked the aspect ratio and just scaled the image in the Y direction to 200 pixels. This produced a longer banner image.</p>
<p><img src="http://atypicalhomeschool.net/gallery/albums/userpics/10001/final.jpg" alt="The final image" title="The final image" /></p>
<p>Step #7:</p>
<p>The last thing I did was choose colours to be applied to the style of the web page. I used GIMP to find those colours. GIMP has a colour picker tool. The button for it is shown here:</p>
<p><img src="http://atypicalhomeschool.net/gallery/albums/userpics/10001/normal_pikbutton.jpg" alt="The colour picker tool" title="The colour picker tool" /></p>
<p>I&#8217;ve circled the areas of the image that I chose the colours from:</p>
<p><img src="http://atypicalhomeschool.net/gallery/albums/userpics/10001/normal_colorpik.jpg" alt="Areas where the colours came from" title="Areas where the colours came from" /></p>
<p>I spent 10 &#8211; 15 minutes picking colours until I found ones that I liked and went well together. The important thing to remember is that what brings a web page style together is to choose colours from the images that are shown on the page. If you have watched professionals in interior design shows, they almost always pick 2 or 3 items to choose their colour palette from. </p>
<p>That&#8217;s basically it.</p>]]></content:encoded>
			<wfw:commentRss>http://atypicalhomeschool.net/tutorials/html-css/creating-a-banner-image/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

