<?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>Learn &#187; Journalism</title>
	<atom:link href="http://www.naymik.com/learn/tag/journalism/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.naymik.com/learn</link>
	<description>A place to learn, Naymik style</description>
	<lastBuildDate>Wed, 14 Apr 2010 15:04:15 +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>HTML Info for Basic Formatting</title>
		<link>http://www.naymik.com/learn/journalism/html-info-for-basic-formatting/</link>
		<comments>http://www.naymik.com/learn/journalism/html-info-for-basic-formatting/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 10:35:13 +0000</pubDate>
		<dc:creator>Mr. Naymik</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Journalism]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[formatting]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.genernicsite.com/learn/?p=147</guid>
		<description><![CDATA[Learn about and practice HTML by typing code and seeing the results.


Related posts:<ol><li><a href='http://www.naymik.com/learn/journalism/html-practice/' rel='bookmark' title='Permanent Link: HTML Practice'>HTML Practice</a> <small>Practice on your own. Type in the box below and...</small></li>
<li><a href='http://www.naymik.com/learn/journalism/inverted-pyramid-and-news-lead/' rel='bookmark' title='Permanent Link: Inverted pyramid and news lead'>Inverted pyramid and news lead</a> <small>Log in first. Double click on the areas that are...</small></li>
<li><a href='http://www.naymik.com/learn/journalism/first-attempt-at-a-lead/' rel='bookmark' title='Permanent Link: First attempt at a lead'>First attempt at a lead</a> <small>Enter your lead into the comments below. Your lead is...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Simple <span id="tip-html_def" class="ttip-span">HTML <img src="http://www.naymik.com/learn/wp-content/uploads/001_09.png" alt="Tip" width="12" height="12" /></span> can be used to mark up, or format, text for a web page.  HTML uses tags to label text so the browser knows how to display the text. Most tags have an opening tag and a closing tags.  Opening tags always enclosed in &lt; &gt; and closing tags in &lt;/ &gt;.The basics are as follows:</p>
<div class="wp-pull-list aligncenter" style="width: 460px;">
<p class="wp-pull-list-text">Paragraphs</p>
<p><code>&lt;p&gt;paragraph text &lt;/p&gt;</code> is used to indicate a paragraph.  Otherwise the text would run together.
<p class="wp-pull-list-cap">all paragraphs of regular text should be marked this way</p>
</div>
<div class="wp-pull-list aligncenter" style="width: 460px;">
<p class="wp-pull-list-text">Bold and Italic</p>
<p><code>&lt;b&gt;bold&lt;/b&gt;</code><strong> </strong>is used to indicate<strong> bold</strong></p>
<p><code>&lt;i&gt;italic&lt;/i&gt;</code><em> </em>is used to indicate <em>italic</em></p>
<p class="wp-pull-list-cap">strong and em are newer tags that can also be used. </p>
</div>
<div class="wp-pull-list aligncenter" style="width: 460px;">
<p class="wp-pull-list-text">Lists</p>
<p><code>&lt;ul&gt; &lt;li&gt;first item &lt;/li&gt; &lt;li&gt;second item&lt;/li&gt; &lt;li&gt;third item&lt;/li&gt;   &lt;/ul&gt;</code> indicates a list</p>
<ul>
<li>first item</li>
<li>second item</li>
<li>third item</li>
</ul>
<p class="wp-pull-list-cap">Lists are good for quick summaries because they are easy to read.</p>
</div>
<div class="wp-pull-list aligncenter" style="width: 460px;">
<p class="wp-pull-list-text">Headings</p>
<h2>&lt;h2&gt;Use h for headings of various size &lt;/h2&gt;</h2>
<h3>&lt;h3&gt;Use h for headings of various size &lt;/h3&gt;</h3>
<h4>&lt;h4&gt;Use h for headings of various size &lt;/h4&gt;</h4>
<h5>&lt;h5&gt;Use h for headings of various size &lt;/h5&gt;</h5>
<p class="wp-pull-list-cap">These should be used sparingly and consistently</p>
</div>
<h3>Advanced</h3>
<div class="wp-pull-list aligncenter" style="width: 460px;">
<p class="wp-pull-list-text">Links</p>
<p><code>&lt;a href="http://www.google.com"&gt;google&lt;/a&gt;</code> is used to make a link.  Put the url, or address, of the page in the quote marks.  The text to be &#8220;linked&#8221; will be in between the a tags. <a rel="nofollow" href="http://www.google.com">google</a>.
<p class="wp-pull-list-cap">very important for web journalism</p>
</div>
<div class="wp-pull-list aligncenter" style="width: 460px;">
<p class="wp-pull-list-text">Images</p>
<p><img class="alignright" src="http://www.naymik.com/learn/wp-content/uploads/2007/12/273525_newspaper.jpg" alt="" width="50" height="50"/></p>
<p><code>&lt;img src="http://www.genernicsite.com/ learn/wp-content/uploads/ 2007/12/273525_newspaper.jpg"&gt;</code> is used to show the image to the right.   &#8220;Src&#8221; represents the location of the image to be shown. The image can be placed on the left or right (left is automatic). Right aligned images use align=&#8221;right&#8221; in the tag. <code>&lt;img src="http://www.genernicsite.com/ learn/wp-content/uploads/ 2007/12/273525_newspaper.jpg" align="right" &gt;</code>
<p class="wp-pull-list-cap">Images are also very important to web journalism</p>
</div>
<p>It can get much more complicated than that, however, this is enough information to enter text for most purposes.  Here is an example of an article.</p>
<div class="wp-pull-list aligncenter" style="width: 460px;">
<p class="wp-pull-list-text">Full Article Markup</p>
<p><strong>The code for this&#8230;</strong><br />
<code>&lt;img align="right" src="http://www.naymik.com/learn/wp-content/uploads/2008/04/grady1.jpg" alt="Grady Sizemore" width="200" height="173" /&gt;&lt;p&gt;CLEVELAND--&lt;a href="http://www.indians.com"&gt;Grady Sizemore&lt;/a&gt; has started a new streak--one he wants to soon end.&lt;/p&gt;&lt;p&gt;The Indians' All-Star center fielder missed his second straight game with a sprained right ankle on Monday. He also sat out Sunday's game against the New York Yankees, ending the majors' longest consecutive games played streak at 382.&lt;/p&gt;<br />
&lt;p&gt;&lt;b&gt;Sizemore&lt;/b&gt; hurt his ankle when he stepped awkwardly on second base during the ninth inning Saturday. He remained in the game, and scored the winning run. However, &lt;b&gt;Sizemore's&lt;/b&gt; ankle was sore the following day and the Indians decided to rest him. Visit &lt;a href="http://www.mlb.com"&gt;Major League Baseball&lt;/a&gt; for more information.&lt;/p&gt;</code>
<p class="wp-pull-list-cap">So, for example here is some code for a simple news story with 3 paragraphs and some links.  Also, the last paragraph has two words that are bold.  There is also an image to go with the story that is aligned with the right side of the page.</p>
</div>
<div class="wp-pull-list aligncenter" style="width: 460px;">
<p class="wp-pull-list-text">Full Article Result</p>
<p><img src="http://www.naymik.com/learn/wp-content/uploads/2008/04/grady1.jpg" alt="Grady Sizemore" width="200" height="173" align="right" />CLEVELAND &#8212; <a rel="nofollow" href="http://www.indians.com">Grady Sizemore</a> has started a new streak &#8212; one he wants to soon end.</p>
<p>The Indians&#8217; All-Star center fielder missed his second straight game with a sprained right ankle on Monday. He also sat out Sunday&#8217;s game against the New York Yankees, ending the majors&#8217; longest consecutive games played streak at 382.</p>
<p><strong>Sizemore</strong> hurt his ankle when he stepped awkwardly on second base during the ninth inning Saturday. He remained in the game, and scored the winning run. However, <strong>Sizemore&#8217;s</strong> ankle was sore the following day and the Indians decided to rest him. Visit <a rel="nofollow" href="http://www.mlb.com">Major League Baseball</a> for more information.
<p class="wp-pull-list-cap">Notice how spaces and line breaks don&#8217;t really matter.  The tags to all the work when the page is displayed by the browser.</p>
</div>
<div id="ttip-html_def" class="ttip-div">Hyper Text Markup Language</div>

<p>Related posts:<ol><li><a href='http://www.naymik.com/learn/journalism/html-practice/' rel='bookmark' title='Permanent Link: HTML Practice'>HTML Practice</a> <small>Practice on your own. Type in the box below and...</small></li>
<li><a href='http://www.naymik.com/learn/journalism/inverted-pyramid-and-news-lead/' rel='bookmark' title='Permanent Link: Inverted pyramid and news lead'>Inverted pyramid and news lead</a> <small>Log in first. Double click on the areas that are...</small></li>
<li><a href='http://www.naymik.com/learn/journalism/first-attempt-at-a-lead/' rel='bookmark' title='Permanent Link: First attempt at a lead'>First attempt at a lead</a> <small>Enter your lead into the comments below. Your lead is...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.naymik.com/learn/journalism/html-info-for-basic-formatting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inverted pyramid and news lead</title>
		<link>http://www.naymik.com/learn/journalism/inverted-pyramid-and-news-lead/</link>
		<comments>http://www.naymik.com/learn/journalism/inverted-pyramid-and-news-lead/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 15:06:27 +0000</pubDate>
		<dc:creator>Mr. Naymik</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Journalism]]></category>
		<category><![CDATA[inverted pyramid]]></category>
		<category><![CDATA[lead]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.naymik.com/learn/?p=2366</guid>
		<description><![CDATA[Log in first.  Double click on the areas that are blue to edit them.  After making several changes, make sure you save. You may work on this anytime, just make sure you save before you quit each time.  When done, mark as complete.


Related posts:Finding and fixing fragments Login, then double click on [...]


Related posts:<ol><li><a href='http://www.naymik.com/learn/us-lit-ii/finding-and-fixing-fragments/' rel='bookmark' title='Permanent Link: Finding and fixing fragments'>Finding and fixing fragments</a> <small>Login, then double click on any blue section, make changes,...</small></li>
<li><a href='http://www.naymik.com/learn/journalism/first-attempt-at-a-lead/' rel='bookmark' title='Permanent Link: First attempt at a lead'>First attempt at a lead</a> <small>Enter your lead into the comments below. Your lead is...</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/college-application-essay/' rel='bookmark' title='Permanent Link: College Application Essay'>College Application Essay</a> <small>Why do you have to write College App Essays? Colleges...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Log in first.  Double click on the areas that are blue to edit them.  After making several changes, make sure you save. You may work on this anytime, just make sure you save before you quit each time.  When done, mark as complete.<br />
<link rel="stylesheet" href="http://www.naymik.com/learn/wp-content/plugins/myhomework/css/style.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://www.naymik.com/learn/wp-content/plugins/myhomework/js/mojo_page.js"></script>

	<div id="message" style="display: none;">a</div>
	<div id="waiting" style="display: none;">
			<img src="http://www.naymik.com/learn/wp-content/plugins/myhomework/ajax-loader.gif" title="Loader" alt="Loader" />
	 </div>
	
<div class="nolog" style="display: none;">1</div>

<div class="result"></div>
<div class="article_stuff">
		
		


				
														<p class="ass_info_graph"><span id="name_holder"></span>, this assignment, <span class="editform">inverted pyramid</span>, <span class="stat"><span class="status_not_done">is not completed. Make changes, SAVE, then click "mark as completed" at the bottom. </span></p>
								<span id="no-edit" style="display: none;">0</span><p><em>inverted pyramid: An inverted pyramid story with summary lead</em></p><div id="edit-container"><h3 class="editable">Default headline change this</h3>
<div class="editable2"> <p>Change this.  Start with lead then move onto rest of article.  Remember, short paragraphs are best.</p></div>

<p class="select_graph"> News Value <span class="editable_select">choose...</span> <span style="display: none" class="options">Currency:Currency,Impact:Impact,Proximity:Proximity,Bizarre:Bizarre,Human Interest:Human Interest,Timeliness:Timeliness,Conflict:Conflict,Prominence:Prominence</span></p>
</div><p><small><span class="save_status"></span></small> <small>Started: <span class="startdate">Jul 29 2010 21:26</span> | Updated: <span class="updatedate">Jul 29 2010 21:26</span></small></p>	
					
					 	

														<div id="original" style="display: none;"><div class="box_controls"><a href="JavaScript:void(0);" class="close_original">close</a></div><div class="original_wrap"><h3 class="editable">Default headline change this</h3>
<div class="editable2"> <p>Change this.  Start with lead then move onto rest of article.  Remember, short paragraphs are best.</p></div>

<p class="select_graph"> News Value <span class="editable_select">choose...</span> <span style="display: none" class="options">Currency:Currency,Impact:Impact,Proximity:Proximity,Bizarre:Bizarre,Human Interest:Human Interest,Timeliness:Timeliness,Conflict:Conflict,Prominence:Prominence</span></p>
</div></div>
												
				<div class="article_options" >
				<a href="JavaScript:void(0);" class="delete_article" >Delete this</a> | <a href="JavaScript:void(0);" class="complete_article" >Mark as complete</a> | <a href="JavaScript:void(0);" class="show_original" >View original</a> | <a href="JavaScript:void(0);" class="get_help" >Help?</a>
				</div> 
				<p><b>Started:</b> 3   <b>Completed:</b> 1</p>	
		</div>
	


<div style="clear: both;"></div>
<div id="show">
</div>


</p>


<p>Related posts:<ol><li><a href='http://www.naymik.com/learn/us-lit-ii/finding-and-fixing-fragments/' rel='bookmark' title='Permanent Link: Finding and fixing fragments'>Finding and fixing fragments</a> <small>Login, then double click on any blue section, make changes,...</small></li>
<li><a href='http://www.naymik.com/learn/journalism/first-attempt-at-a-lead/' rel='bookmark' title='Permanent Link: First attempt at a lead'>First attempt at a lead</a> <small>Enter your lead into the comments below. Your lead is...</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/college-application-essay/' rel='bookmark' title='Permanent Link: College Application Essay'>College Application Essay</a> <small>Why do you have to write College App Essays? Colleges...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.naymik.com/learn/journalism/inverted-pyramid-and-news-lead/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>First attempt at a lead</title>
		<link>http://www.naymik.com/learn/journalism/first-attempt-at-a-lead/</link>
		<comments>http://www.naymik.com/learn/journalism/first-attempt-at-a-lead/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 13:07:02 +0000</pubDate>
		<dc:creator>Mr. Naymik</dc:creator>
				<category><![CDATA[Journalism]]></category>
		<category><![CDATA[lead]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.naymik.com/learn/?p=2348</guid>
		<description><![CDATA[Enter your lead into the comments below.  Your lead is based on the following facts.

Lead Facts
School purchased new on-line learning system; Students will be able to make up credits during summer on Internet; System cost $1.2 million, including new computers, says Mr. Karatas, director; Classes available this summer; Mr. Naymik stated courses no substitute [...]


Related posts:<ol><li><a href='http://www.naymik.com/learn/journalism/inverted-pyramid-and-news-lead/' rel='bookmark' title='Permanent Link: Inverted pyramid and news lead'>Inverted pyramid and news lead</a> <small>Log in first. Double click on the areas that are...</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/formating-typed-papers/' rel='bookmark' title='Permanent Link: Formating typed papers'>Formating typed papers</a> <small>All typed assignments in literature class must conform to the...</small></li>
<li><a href='http://www.naymik.com/learn/journalism/html-info-for-basic-formatting/' rel='bookmark' title='Permanent Link: HTML Info for Basic Formatting'>HTML Info for Basic Formatting</a> <small>Learn about and practice HTML by typing code and seeing...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Enter your lead into the comments below.  Your lead is based on the following facts.</p>
<div class="wp-pull-list aligncenter" style="width: 100%;">
<p class="wp-pull-list-text">Lead Facts</p>
<p>School purchased new on-line learning system; Students will be able to make up credits during summer on Internet; System cost $1.2 million, including new computers, says Mr. Karatas, director; Classes available this summer; Mr. Naymik stated courses no substitute for class
<p class="wp-pull-list-cap">Remember, your lead should be short, concise and contain the most important element.</p>
</div>


<p>Related posts:<ol><li><a href='http://www.naymik.com/learn/journalism/inverted-pyramid-and-news-lead/' rel='bookmark' title='Permanent Link: Inverted pyramid and news lead'>Inverted pyramid and news lead</a> <small>Log in first. Double click on the areas that are...</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/formating-typed-papers/' rel='bookmark' title='Permanent Link: Formating typed papers'>Formating typed papers</a> <small>All typed assignments in literature class must conform to the...</small></li>
<li><a href='http://www.naymik.com/learn/journalism/html-info-for-basic-formatting/' rel='bookmark' title='Permanent Link: HTML Info for Basic Formatting'>HTML Info for Basic Formatting</a> <small>Learn about and practice HTML by typing code and seeing...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.naymik.com/learn/journalism/first-attempt-at-a-lead/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Second current event due 9/22</title>
		<link>http://www.naymik.com/learn/journalism/ce_12_14/</link>
		<comments>http://www.naymik.com/learn/journalism/ce_12_14/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 07:18:33 +0000</pubDate>
		<dc:creator>Mr. Naymik</dc:creator>
				<category><![CDATA[Journalism]]></category>
		<category><![CDATA[assignment]]></category>
		<category><![CDATA[event]]></category>

		<guid isPermaLink="false">http://www.genernicsite.com/learn/2007/12/11/ce_12_14/</guid>
		<description><![CDATA[Your current event is for this week is due Friday, 9/4.  You may complete this in class or at home. You have two options for finding articles.  First, you can use one of the news values articles.  Or, use an article from one of the sites below:

CNN: http://www.cnn.com
Reuters: http://www.reuters.com
New York Times: http://www.nytimes.com
Cleveland.com [...]


Related posts:<ol><li><a href='http://www.naymik.com/learn/journalism/html-practice/' rel='bookmark' title='Permanent Link: HTML Practice'>HTML Practice</a> <small>Practice on your own. Type in the box below and...</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/age-of-reason-group-work/' rel='bookmark' title='Permanent Link: Age of Reason group work'>Age of Reason group work</a> <small>General directions: Create a PowerPoint presentation for your group&#8217;s prompt....</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/oral-tradition-assignment/' rel='bookmark' title='Permanent Link: Oral tradition assignment'>Oral tradition assignment</a> <small>As we read Native American Myths, we are noticing the...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Your current event is for this week is due Friday, 9/4.  You may complete this in class or at home. You have two options for finding articles.  First, you can use one of the news values articles.  Or, use an article from one of the sites below:</p>
<ul>
<li>CNN: <a rel="nofollow" href="http://www.cnn.com" target="_blank">http://www.cnn.com</a></li>
<li>Reuters: <a rel="nofollow" href="http://www.reuters.com" target="_blank">http://www.reuters.com</a></li>
<li>New York Times: <a rel="nofollow" href="http://www.nytimes.com" target="_blank">http://www.nytimes.com</a></li>
<li>Cleveland.com <a rel="nofollow" href="http://www.cleveland.com" target="_blank">http://www.cleveland.com</a></li>
</ul>
<div class="notice">Submit via the  <a href="http://www.naymik.com/learn/tools-2/forms/current-event/">current event form</a>.</div>


<p>Related posts:<ol><li><a href='http://www.naymik.com/learn/journalism/html-practice/' rel='bookmark' title='Permanent Link: HTML Practice'>HTML Practice</a> <small>Practice on your own. Type in the box below and...</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/age-of-reason-group-work/' rel='bookmark' title='Permanent Link: Age of Reason group work'>Age of Reason group work</a> <small>General directions: Create a PowerPoint presentation for your group&#8217;s prompt....</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/oral-tradition-assignment/' rel='bookmark' title='Permanent Link: Oral tradition assignment'>Oral tradition assignment</a> <small>As we read Native American Myths, we are noticing the...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.naymik.com/learn/journalism/ce_12_14/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Journalism Intro and Objectives</title>
		<link>http://www.naymik.com/learn/journalism/journalism-objectives/</link>
		<comments>http://www.naymik.com/learn/journalism/journalism-objectives/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 20:25:06 +0000</pubDate>
		<dc:creator>Mr. Naymik</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Journalism]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[journalist]]></category>
		<category><![CDATA[Newspaper]]></category>
		<category><![CDATA[objectives]]></category>

		<guid isPermaLink="false">http://www.genernicsite.com/learn/2007/11/24/journalism-objectives/</guid>
		<description><![CDATA[Welcome to journalism. In this category, you will find class discussions, assignments and course content.  Click the &#8220;journalism&#8221; link below the site name to view all the posts for this class.
Course objectives for journalism are as follows.  Emphasis will be place on the &#8220;how to&#8221; aspect rather than in perfect production.
Course Goals:

Understand and appreciate the [...]


Related posts:<ol><li><a href='http://www.naymik.com/learn/us-lit-ii/independent-novel-study/' rel='bookmark' title='Permanent Link: Independent Novel Study'>Independent Novel Study</a> <small>As the name implies, independent study will involve you reading...</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/raisin-in-the-sun-essay/' rel='bookmark' title='Permanent Link: Raisin in the Sun Essay'>Raisin in the Sun Essay</a> <small>Now that we’ve finished the , combine your knowledge of...</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/a-raisin-in-the-sun-intro/' rel='bookmark' title='Permanent Link: A Raisin in the Sun Intro'>A Raisin in the Sun Intro</a> <small>A Raisin in the Sun was first produced in 1959...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-278" title="223094_latest_news" src="http://www.genernicsite.com/learn/wp-content/uploads/223094_latest_news-130x130.jpg" alt="" />Welcome to journalism. In this category, you will find class discussions, assignments and course content.  Click the &#8220;journalism&#8221; link below the site name to view all the posts for this class.</p>
<p>Course objectives for journalism are as follows.  Emphasis will be place on the &#8220;how to&#8221; aspect rather than in perfect production.</p>
<p><strong>Course Goals:</strong></p>
<ol type="1">
<li>Understand and appreciate the fundamentals of journalism and how these fundamentals apply to a school publication.</li>
<li>Understand what makes news and develop the ability to make ethically sound decisions when writing for the newspaper.</li>
<li>Create effective news stories, feature stories, and other types of stories while demonstrating the ability to follow AP style.</li>
<li>Understand the role of technology in the creation of a newsmagazine and how technology influences the media.</li>
<li>Develop critical thinking and analytical skills to evaluate the news, mass media, sources, and one&#8217;s own writing.</li>
<li>Work cooperatively with other members of the staff and school administration to create a quality, professional newsmagazine.</li>
<li>Be constantly aware of what is going on in the world, both locally and globally.</li>
<li>Utilize one&#8217;s creativity in the layout and design process.</li>
<li>Meet deadlines on time in order to ensure productivity.</li>
</ol>


<p>Related posts:<ol><li><a href='http://www.naymik.com/learn/us-lit-ii/independent-novel-study/' rel='bookmark' title='Permanent Link: Independent Novel Study'>Independent Novel Study</a> <small>As the name implies, independent study will involve you reading...</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/raisin-in-the-sun-essay/' rel='bookmark' title='Permanent Link: Raisin in the Sun Essay'>Raisin in the Sun Essay</a> <small>Now that we’ve finished the , combine your knowledge of...</small></li>
<li><a href='http://www.naymik.com/learn/us-lit-ii/a-raisin-in-the-sun-intro/' rel='bookmark' title='Permanent Link: A Raisin in the Sun Intro'>A Raisin in the Sun Intro</a> <small>A Raisin in the Sun was first produced in 1959...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.naymik.com/learn/journalism/journalism-objectives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
