<?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>BrianGriggs.com &#187; HTML</title>
	<atom:link href="http://briangriggs.com/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://briangriggs.com</link>
	<description>Tallest librarian in the world</description>
	<lastBuildDate>Fri, 03 Feb 2012 17:13:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Six pre-made HTML 5 lessons</title>
		<link>http://briangriggs.com/2011/11/09/six-pre-made-html-5-lessons/</link>
		<comments>http://briangriggs.com/2011/11/09/six-pre-made-html-5-lessons/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 16:55:36 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tech How To]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://briangriggs.com/?p=1834</guid>
		<description><![CDATA[This one&#8217;s for the teachers of technology. If you are doing any instruction on what HTML 5 is, check out Microsoft&#8217;s faculty page here for pre-made PowerPoints for six lessons. The page also includes all of the project files, which gives you a lot to pick and choose from when modifying it for your own [...]]]></description>
			<content:encoded><![CDATA[<p>This one&#8217;s for the teachers of technology. If you are doing any instruction on what HTML 5 is, check out <a href="http://www.mis-laboratory.com/Faculty/" target="_blank">Microsoft&#8217;s faculty page here</a> for pre-made PowerPoints for six lessons. The page also includes all of the project files, which gives you a lot to pick and choose from when modifying it for your own classes. </p>
]]></content:encoded>
			<wfw:commentRss>http://briangriggs.com/2011/11/09/six-pre-made-html-5-lessons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML: Day 1 – Simple text formatting and inserting a picture</title>
		<link>http://briangriggs.com/2011/10/05/html-day-1-%e2%80%93-simple-text-formatting-and-inserting-a-picture-2/</link>
		<comments>http://briangriggs.com/2011/10/05/html-day-1-%e2%80%93-simple-text-formatting-and-inserting-a-picture-2/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 20:00:55 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Creating a Mobile App]]></category>
		<category><![CDATA[Future Professionals]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://briangriggs.com/?p=1765</guid>
		<description><![CDATA[Objective: We will be creating an HTML file with basic code and then previewing it in a web browser. HTML code used in this lesson: &#60;strong&#62; bolds text &#60;em&#62; italicizes text (“em” is short for “emphasis”) &#60;p&#62; shows where a paragraph starts and ends &#60;br&#62; starts a new line &#60;img src&#62; brings in a picture [...]]]></description>
			<content:encoded><![CDATA[<p><em>Objective: We will be creating an HTML file with basic code and then previewing it in a web browser. </em></p>
<p>HTML code used in this lesson:</p>
<p><code>&lt;strong&gt; bolds text<br />
&lt;em&gt; italicizes text (“em” is short for “emphasis”)<br />
&lt;p&gt; shows where a paragraph starts and ends<br />
&lt;br&gt; starts a new line<br />
&lt;img src&gt; brings in a picture<br />
&lt;a href&gt;  creates a link</code></p>
<p>The HTML file we’ll create is going to be extremely basic. Later we’ll add information that meets the standards of the World Wide Web Consortium (W3C) and is coded better.</p>
<p>1.	Open up a text editor like Text Edit or Notepad.<br />
2.	Save it as sample.html. If you don’t put the .html as the file extension, it may not load properly in the browser.<br />
3.	In your new text file, type:</p>
<p><code>This is the sample file. How exciting.</code></p>
<p>4.	Let’s make that “exciting” really exciting. We can make the word “exciting” bold by adding the &lt;strong&gt; tag around it.</p>
<p><code>This is the sample file. How &lt;strong&gt;exciting&lt;/strong&gt;.</code></p>
<p>&lt;strong&gt; lets the browser know that what follows will be bold. &lt;/strong&gt; lets the browser know where to stop. If you leave off the &lt;/strong&gt;, the rest of the page will be one big, bold mess.<br />
5.	Preview the HTML file in your browser. Open up Safari/Firefox/Chrome/Opera/Whatever . Choose File-&gt;Open and then select your HTML file. Check to make sure “exciting” is bold.<br />
6.	Now let’s add emphasis to the word “this” using the &lt;em&gt; tag.</p>
<p><code>&lt;em&gt;This&lt;/em&gt; is the sample file. How &lt;strong&gt;exciting&lt;/strong&gt;.</code></p>
<p>Notice how, just like with &lt;strong&gt;, you need to close out &lt;em&gt; with &lt;/em&gt; or else it never ends.<br />
7.	We’re going to insert a picture, but I don’t want it to be on the same line as the text. Mark the text that we have as a paragraph by adding the &lt;p&gt; tag to the text.</p>
<p><code>&lt;p&gt;&lt;em&gt;This&lt;/em&gt; is the sample file. How &lt;strong&gt;exciting&lt;/strong&gt;.&lt;/p&gt;</code></p>
<p>You can also use the &lt;br&gt; code to start a new line, but when we get into CSS, using the &lt;p&gt; will allow you to do cooler stuff with the paragraph.<br />
8.	Insert a photo using the &lt;img src&gt; code. After the src part, you’ll be telling the browser where the file is stored online. For the sample, we’ll use an image from my site that’s found at http://briangriggs.com/wp-content/uploads/tech.jpg.</p>
<p><code>&lt;p&gt;&lt;em&gt;This&lt;/em&gt; is the sample file. How &lt;strong&gt;exciting&lt;/strong&gt;.&lt;/p&gt;<br />
&lt;img src=”http://briangriggs.com/wp-content/uploads/tech.jpg”&gt;</code></p>
<p>Pay attention to the equals sign and the quotation marks. Whatever’s inside the “” is the direct address for the image. = tells the browser that what’s coming next is the source (src) of the image.<br />
9.	Save the HTML file and run it in your browser to check if the HTML file is working.<br />
10.	The last thing we’ll go over in this lesson is the &lt;a href&gt; tag. &lt;a href&gt; stands for “anchor hypertext reference”. Anchors are placeholders within a document. &lt;a href&gt; lets the browser know that a reference, a link, is coming.</p>
<p>Make the word “sample” a link to briangriggs.com by adding the &lt;a href&gt; tag.</p>
<p><code>&lt;p&gt;&lt;em&gt;This&lt;/em&gt; is the &lt;a href=”http://briangriggs.com”&gt;sample&lt;/a&gt; file. How &lt;strong&gt;exciting&lt;/strong&gt;.&lt;/p&gt;<br />
&lt;img src=”http://briangriggs.com/wp-content/uploads/tech.jpg”&gt;</code></p>
<p>Like with the &lt;img src&gt; tag, we use the =”” to point to a location. Just like the &lt;strong&gt; and &lt;em&gt; tags, we close it out or else the rest of the document will be a link.<br />
11.	Save it and run sample.html in your browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://briangriggs.com/2011/10/05/html-day-1-%e2%80%93-simple-text-formatting-and-inserting-a-picture-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Editing image size and alignment in pbwiki HTML</title>
		<link>http://briangriggs.com/2009/03/10/editing-image-size-and-alignment-in-pbwiki-html/</link>
		<comments>http://briangriggs.com/2009/03/10/editing-image-size-and-alignment-in-pbwiki-html/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 17:19:59 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://briangriggs.com/?p=389</guid>
		<description><![CDATA[This is for redfield.pbwiki.com. When you add images to a pbwiki, it takes a little bit of HTML editing to format the image how you would like. In pbwiki, click on the Source button in your editor to view the HTML code. Let&#8217;s use an image here and I&#8217;ll show you the different code to [...]]]></description>
			<content:encoded><![CDATA[<p><em>This is for <a href="http://redfield.pbwiki.com">redfield.pbwiki.com</a>.</em></p>
<p>When you add images to a pbwiki, it takes a little bit of HTML editing to format the image how you would like. In pbwiki, click on the <strong>Source</strong> button in your editor to view the HTML code.</p>
<p>Let&#8217;s use an image here and I&#8217;ll show you the different code to change the formatting.</p>
<p>The image:<br />
<img src="http://briangriggs.com/wp-content/uploads/tech.jpg" alt="" /></p>
<p>If you were to view the HTML code for this image, it would look like:</p>
<p><img src="http://briangriggs.com/wp-content/uploads/2009/03/picture-3.png" alt="" /></p>
<p>What if we wanted to make the image bigger? I would add height and width code to my image HTML.</p>
<p><img src="http://briangriggs.com/wp-content/uploads/tech.jpg" height ="300" width ="300" alt="" /><br />
<img src="http://briangriggs.com/wp-content/uploads/2009/03/picture-6.png" alt="" /></p>
<p>Notice the space from the URL and then the height=&#8221;300&#8243; and width=&#8221;300&#8243; code. Also, I chose 300 as a random number. Make the numbers smaller to shrink your image, larger to make your image pixels larger.</p>
<p>By adding in an align code, I can change how the words wrap around the text. Try adding in an align=&#8221;left&#8221; or align=&#8221;right&#8221; next to where you put the height and width code.</p>
<p><img src="http://briangriggs.com/wp-content/uploads/tech.jpg" height ="100" width ="100" align="right" alt="" /> I&#8217;ve added some text and I will keep typing to see if the image will wrap around correctly using an align=&#8221;right&#8221; code.  I started typing this <em>after</em> where I inserted the image. Below the red circle picture that I&#8217;ve got here I&#8217;ve put the source code so that you can see how I changed the image size and the alignment. Something to look for when you are searching the HTML source code is looking for a .gif, .jpg, or .png file to see where your images are at. I&#8217;ll keep typing and you can keep reading but you should probably just go edit your wiki page by now since this serves the main purpose of being filler text.</p>
<p>Here&#8217;s the code screenshot, complete with where I started typing my text:<br />
<img src="http://briangriggs.com/wp-content/uploads/2009/03/picture-9.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://briangriggs.com/2009/03/10/editing-image-size-and-alignment-in-pbwiki-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.186 seconds -->

