Do you think our lives have been improved by the Internet? Why?
Yes, our lives are improved by the internet. The internet allow us to communicate with people all over the world, from the U.S. to china. The internet is supplied with billions of information that can be used for different topics.
Wednesday, November 30, 2011
Tuesday, November 29, 2011
6b. HTML Formatting
Text formatting
What does this example demonstrate?
It shows how to change the font and text Style
How can you format text in an HTML document?
By adding the correct tags before and after your content.
Preformatted text
What does this example demonstrate?
So your content is exactly the same way you typed it.
Why would you use preformatted text?
So my content is exactly the same way I typed it.
"Computer output" tags
What does this example demonstrate?
Defines computer code text
Defines keyboard text
What are "computer output" tags used to display?
These tags are often used to display computer/programming code.
Address
What does this example demonstrate?
How to type your webpage as a link
Type your address in an HTML document.
<address>
http://viereckquestion.blogspot.com/<br />
Abbreviations and acronyms
What does this example demonstrate?
Acronyms
What is an acronym?
A word formed from the initial letters or groups of letters ofwords in a set phrase or series of words
What attribute is used for Abbreviations and acronyms?
<abbr>, <acronym>
Write an example of an acronym.
ASAP
Text direction
What does this example demonstrate?
Directions of Text
Why would you ever want to change text direction?
As a style
Quotations
What does this example demonstrate?
It demonstrate how to correctly display long and short quotes.
How would you handle a long quotation in HTML? A short quotation in HTML?
<blockquote>, <q>
Deleted and inserted text
What does this example demonstrate?
How to cross out text using html
What happens to deleted text in most browsers?
They are crossed out
What happens to inserted text in most browsers?
The text are underlined
Describe how you would view HTML source code in a web browser?
Blue, red
What does this example demonstrate?
It shows how to change the font and text Style
How can you format text in an HTML document?
By adding the correct tags before and after your content.
Preformatted text
What does this example demonstrate?
So your content is exactly the same way you typed it.
Why would you use preformatted text?
So my content is exactly the same way I typed it.
"Computer output" tags
What does this example demonstrate?
Defines computer code text
Defines keyboard text
What are "computer output" tags used to display?
These tags are often used to display computer/programming code.
Address
What does this example demonstrate?
How to type your webpage as a link
Type your address in an HTML document.
<address>
http://viereckquestion.blogspot.com/<br />
Abbreviations and acronyms
What does this example demonstrate?
Acronyms
What is an acronym?
A word formed from the initial letters or groups of letters ofwords in a set phrase or series of words
What attribute is used for Abbreviations and acronyms?
<abbr>, <acronym>
Write an example of an acronym.
ASAP
Text direction
What does this example demonstrate?
Directions of Text
Why would you ever want to change text direction?
As a style
Quotations
What does this example demonstrate?
It demonstrate how to correctly display long and short quotes.
How would you handle a long quotation in HTML? A short quotation in HTML?
<blockquote>, <q>
Deleted and inserted text
What does this example demonstrate?
How to cross out text using html
What happens to deleted text in most browsers?
They are crossed out
What happens to inserted text in most browsers?
The text are underlined
Describe how you would view HTML source code in a web browser?
B
Question of the Day, 11/28/11
How important to you is texting for developing relationships and connecting with people? Why?
Texting is a great way to communicate with someone without the hassle of a long conversation. So texting is important to me for developing relationships and connecting with people.
Texting is a great way to communicate with someone without the hassle of a long conversation. So texting is important to me for developing relationships and connecting with people.
Which Is More Important: Talent or Hard Work?
Hard work is more important then talent. Talent can easily be not taking advantage of, so your just wasting it. With hard work, you are determined to strive for success and be the best you can be.
Monday, November 28, 2011
Lesson 5 HTML Attributes
What do attributes provide?
Attributes provide additional information about an element
Class, Id, Style, Title
When are attributes specified?
Attributes are always specified in the start tag
How do you get attributes?
Attributes come in name/value pairs like: name="value"
What tag defines HTML links?
HTML links are defined with the <a> tag
Where is an HTML link address specified?
The link address is specified in the href attribute
How should attribute values be enclosed?
Attribute values should always be enclosed in quotes
When is it necessary to use single quotes?
When the attribute value itself contains quotes, it is necessary to use single quotes
Define "case in-sensitive".
Attribute names and attribute values are case-insensitive
Why should you use only lowercase in HTML 4?
Newer versions of (X)HTML will demand lowercase attributes
What type of attributes are required in XHTML?
Friday, November 18, 2011
HTML Elements
What is an HTML element?
An HTML element is everything from the start tag to the end tag
What is another name for a start tag?
Opening tag
What is another name for a end tag?
Closing tag
When are HTML elements closed in a start tag?
Empty elements are closed in the start tag
Why are HTML Documents nested?
HTML documents consist of nested HTML elements
Write the beginning tag, end tag and definition of each tag.
An HTML element is everything from the start tag to the end tag
What is another name for a start tag?
Opening tag
What is another name for a end tag?
Closing tag
When are HTML elements closed in a start tag?
Empty elements are closed in the start tag
Why are HTML Documents nested?
HTML documents consist of nested HTML elements
Write the beginning tag, end tag and definition of each tag.
- p, <p></p>
- body, <body></body>
- html, <html></html>
- br, <br><br />
What could happen if you do not include the end tag.
Your content will not include
What is the proper way to close an empty XHTML and XML tag.
In XHTML, all elements must be closed. Adding a slash inside the start tag, like <br />, is the proper way of closing empty elements in XHTML (and XML)
Why are lowercase tags preferred?
W3Schools use lowercase tags because the World Wide Web Consortium (W3C) recommends lowercase in HTML 4, and demands lowercase tags in XHTML
Thursday, November 17, 2011
6a. HTML Headings
1.What is the Largest heading?
h1 is the largest heading
2.What is the Smallest heading?
h6 is the smallest heading
3.What do browsers add automatically to a heading?
Browsers automatically add some empty space (a margin) before and after each heading
4.Why should you not use headings for bold text?
Use HTML headings for headings only. Don't use headings to make text BIG or bold
5.How do search engines use headings?
Search engines use your headings to index the structure and content of your web pages
6.Why is it important use headings to show document structure?
Since users may skim your pages by its headings, it is important to use headings to show the document structure
7.What is the most important heading?
H1, the the moat important heading
8.What tag should be used to separate content?
<p></p>
<hr />
9.What does a web browser do with comments?
Comments can be inserted into the HTML code to make it more readable and understandable.
10.Why would you add comments?
Comments are ignored by the browser and are not displayed
11.How could you view the HTML code of a web page?
Right-click in the page and select "View Source" (IE) or "View Page Source" (Firefox), or similar for other browsers
12.View the source of the HTML Headings page.
h1 is the largest heading
2.What is the Smallest heading?
h6 is the smallest heading
3.What do browsers add automatically to a heading?
Browsers automatically add some empty space (a margin) before and after each heading
4.Why should you not use headings for bold text?
Use HTML headings for headings only. Don't use headings to make text BIG or bold
5.How do search engines use headings?
Search engines use your headings to index the structure and content of your web pages
6.Why is it important use headings to show document structure?
Since users may skim your pages by its headings, it is important to use headings to show the document structure
7.What is the most important heading?
H1, the the moat important heading
8.What tag should be used to separate content?
<p></p>
<hr />
9.What does a web browser do with comments?
Comments can be inserted into the HTML code to make it more readable and understandable.
10.Why would you add comments?
Comments are ignored by the browser and are not displayed
11.How could you view the HTML code of a web page?
Right-click in the page and select "View Source" (IE) or "View Page Source" (Firefox), or similar for other browsers
12.View the source of the HTML Headings page.
Wednesday, November 16, 2011
Cell Phones at School: Should They Be Allowed?
Cell phones should be allowed in school. SOme pros include You can be in touch with your children, and know their whereabouts. Your kids can reach you in the event of an emergency, and vice versa.
If in danger, your children can reach the authorities or a medical provider.
Source:http://life.familyeducation.com/cellular-telephones/school/51264.html
If in danger, your children can reach the authorities or a medical provider.
Source:http://life.familyeducation.com/cellular-telephones/school/51264.html
Friday, November 4, 2011
Dear Ipod Touch
Dear Ipod Touch,
For the most part you always been there for me. Day and night, 24/7 you was always there. The way you turn on always make my day. While we do have occasional problems, we always tend to work it out. I always wished you could talk more, but you always helped me out with words I need help with. That wonderful feature is called a dictionary.
A confession I have to make is that you wasn't my first one. I had another Ipod touch a year before I met you. Unfortunately she was kidnapped and never returned. All the passion, confidence and reliability have been given to you. WIth your effort, you've been doing a great job in ingesting it.
What I love most about you is the way you know what music I like. Especially playing the type of music that matches my feelings. I also love the way you wear the blue dress to make me feel better. You are always working hard because of how long you can go without tiring up or given up. I know know body can steal you from me because I have the password to your heart.
For the most part you always been there for me. Day and night, 24/7 you was always there. The way you turn on always make my day. While we do have occasional problems, we always tend to work it out. I always wished you could talk more, but you always helped me out with words I need help with. That wonderful feature is called a dictionary.
A confession I have to make is that you wasn't my first one. I had another Ipod touch a year before I met you. Unfortunately she was kidnapped and never returned. All the passion, confidence and reliability have been given to you. WIth your effort, you've been doing a great job in ingesting it.
What I love most about you is the way you know what music I like. Especially playing the type of music that matches my feelings. I also love the way you wear the blue dress to make me feel better. You are always working hard because of how long you can go without tiring up or given up. I know know body can steal you from me because I have the password to your heart.
Wednesday, November 2, 2011
What is the Web?
What are the sites you most commonly access or visit on the Web? Why?
The sites I most common visit are sports websites. This is because I love playing, watching and learn new things on that category.
The sites I most common visit are sports websites. This is because I love playing, watching and learn new things on that category.
Subscribe to:
Posts (Atom)