Wednesday, November 9, 2011

How has your effort determined your success in this class, school and life?

How has your effort determined your success in this class, school and life?

 My effort determines my success in this class by working hard, doing all my work, and doing what I have to. It determines my success in my life by if I work hard in school I get what I want out of school.

Monday, November 7, 2011

Dear Cell Phone,
     I love you very much. I use you everyday. If you were not invented I don't know how my life would be without you. I use you to call mommy, and i use you to surf the web. We' ve been threw so much. I lost you, I found you now you're back.  You haven't broke into pieces, right now your indestructible and I thank you for that.
     I had a cellular device since my 5th grade year in elementary school and ever since I have gotten several more. I hope you don't break or your screen cracks, because if you do T-mobile will put me threw hell trying to get a new one of you. So do your best to stand up to my clumsiness.
     I thank the creators of the cellular device. Because my phone is my lap top, and my iPod combined with a house phone all in one. There really isn't much else to say or write so I'll conclude it here. Thank you Cell Phone for being what you are.   
     

Write three paragraphs supporting your opinion.

Dear Cell Phone,

 I love you very much. I use you everyday. If you were not invented I don't know how my life would be without you. I use you to call mommy, and i use you to surf the web.
   I had a cellular device since my 5th grade year and ever since we've been best friends. There aren't many things to say to you so I'll conclude it here.. I thank you for being invented!!!



                                                                       Sincerely, Ta'Nesah

Tuesday, November 1, 2011

Do uniforms make school better

Uniforms do make school better because everyone almost looks the same. You don't have to worry about students getting picked on because of their attire. You don't have to worry about the male teachers being portrayed as pervs or weirdos for telling the females to pull up their shirts up.



Uniforms create such a better learning society. Students are able to learn productively. They are worrying about work instead of someones baggy t-shirt or baggy ripped pants.

So as you can see uniforms make everything better. Less drama, less stress, and more learning. Uniform to me now provides all the students with a equal learning opportunity. Although uniform is better we the students should be able to be original with any color blazers, sweaters, coats or jackets. Although I agree that uniform is a good idea I still believe that  we should be some what orginal. 

What is your overall opinion of this article? How do you feel about being a guinea pig for this initiative? What responsibilities does the senior class have to success of mobile devices in education? Is this a good thing?

What is your overall opinion of this article?  How do you feel about being a guinea pig for this initiative?  What responsibilities does the senior class have to success of mobile devices in education?  Is this a good thing? 


I am a sophomore here at Campus and I am not a Guinea Pig to the tablets replacing text books because the class of 2014 still uses text books.  The responsibilities the senior class have, are not losing and damaging tablets. It is a good thing depending on how the seniors use it to the best of their ability.

Wednesday, October 26, 2011

  1. What is an HTML element? everything form start tag to end tag
  2. What is another name for a start tag? element name or child name
  3. What is another name for a end tag? closing tag
  4. When are HTML elements closed in a start tag?Empty elements are closed in the start tag
  5. Why are HTML Documents nested?Most HTML elements can be nested (can contain other HTML elements).
  6. Write the beginning tag, end tag and definition of each tag.
    • p <p>This is my first paragraph.</p>
    • body <body>
      <p>This is my first paragraph.</p>
      </body>
    • html <html>

      <body>
      <p>This is my first paragraph.</p>
      </body>

      </html>
    • br <br> is an empty element without a closing tag (the <br> tag defines a line break).
  7. What could happen if you do not include the end tag. all your tags might not get coded right
  8. What is the proper way to close an empty XHTML and XML tag.close empty elements with /> or >
  9. Why are lowercase tags preferred? they are case insensitive
  1. What is an HTML?HTML stands for Hyper Text Markup Language
  2. What is a Markup language?A markup language is a set of markup tags
  3. What are Markup tags usually called?HTML markup tags are usually called HTML tags
  4. What surrounds HTML keywords?HTML tags are keywords surrounded by angle brackets like <html>
  5. What are the HTML tags included in a pair?HTML tags normally come in pairs like <b> and </b>
  6. What is the purpose of each tag?The first tag in a pair is the start tag, the second tag is the end tag
  7. What do HTML documents describe?HTML documents describe web pages
  8. What do HTML documents contain? contain html tags and plain text
  9. What is another name for a HTML Document? are also called web pages
  10. What happens to the text between a pair of HTML tags? it becomes the way you want it to be.