I think that having you books on a electronic device is a good thing. It will help us always have our textbooks while taking the load off our backs. We will be able to avoid carrying the books back and forth. Also we can use it help us with our homework. Things can become a lot more easier if everyone had electronic devices with our textbooks.
10 years from now all textbooks will be digital. No one will purchase textbooks that aren't digital. It would put a strain on your back and it will cost more money. That's more money out your pocket as to less money and you always have the textbooks with your device.
I think that having e-books will increase learning and studying. Kids will be more likely to grab the electronic device and do homework and study. Everyone always uses their devices so it will occur to them that the have to do something that is needed for school. It will be for the greater good that we have e-books.
Aamirr's Journal
Tuesday, January 24, 2012
Tell us your thoughts on the growing offerings in digital books and textbooks. Do you like the idea of having your books on a Phone, Tablet or other device? What might be the drawbacks? What percentage of textbooks do you think will be digital 10 years from now? Do you think you’d read more if you had access to e-books? How do you think e-books will change studying and learning?
Friday, January 6, 2012
HTML 10
What does this example demonstrate? How to create tables in an HTML document.
What does this example demonstrate? How to specify different table borders.
What tag are tables defined with? Tables are defined with the tag.
What is a table is divided into? What tag is used? A table is divided into rows (with the <tr> tag).
What are rows divided into? What tag is used and what do the letters stand for? Each row is divided
into data cells (with the <td> tag). TD stands for "table data."
What content can a data cell can? A <td> tag can contain text, links, images, lists, forms, other tables, etc.
What happens if you do not specify a border attribute? What do you need to do display a table with borders? If you do not specify a border attribute, the table will be displayed without borders. Sometimes this can be useful, but most of the time, we want the borders to show. To display a table with borders, specify the border attribute.
What tag is used to define headings in a table? Header information in a table are defined with the <th> tag.
What does this example demonstrate? How to specify different table borders.
What tag are tables defined with? Tables are defined with the tag.
What is a table is divided into? What tag is used? A table is divided into rows (with the <tr> tag).
What are rows divided into? What tag is used and what do the letters stand for? Each row is divided
into data cells (with the <td> tag). TD stands for "table data."
What content can a data cell can? A <td> tag can contain text, links, images, lists, forms, other tables, etc.
What happens if you do not specify a border attribute? What do you need to do display a table with borders? If you do not specify a border attribute, the table will be displayed without borders. Sometimes this can be useful, but most of the time, we want the borders to show. To display a table with borders, specify the border attribute.
What tag is used to define headings in a table? Header information in a table are defined with the <th> tag.
html 9
What is the purpose of using frames in HTML?
With frames, you can display more than one HTML document
in the same browser window.
Vertical frame set
What does this example demonstrate?
it demonstrates different frames
Change the numbers and words inside the quotation marks. Describe what happens.1.
it becomes a frame
Horizontal frame set
How can you prevent the user from changing frame sizes?
you can prevent the user from changing frames by removing the code
What do you do for browsers that do not support frames?
you find one that does.
How to use the tag
What does this example demonstrate?
this demonstrates how to use no frames tag.
Why would you use this example?
i would use this example because it shows all 3 examples of this tag.
Mixed frame set
What does this example demonstrate?
this show how to split frames in rows.
What does this example look like?
it looks like a different version or another way to use frames.
Frame set with noresize="noresize"
What does this example demonstrate?
it shows how to use certain frames.
Why would you include this tag?
I would include this tag only if i needed A and B frames.
Navigation frame
What are 2 advantages of frames?
Advantages of frames are being able to split section of your page and having it organized.
Where are the frames in this example located?
The frames are located as links.
How do you get to these frames?
By clicking them.
Inline frame
What does this example demonstrate?
This example demonstrates how to use text in frames.
What happens if a browser does not support inline frames?
You will have to install one that has.
Jump to a specified section within a frame
What does this example demonstrate?
This demonstrates how use frames to organize your websie.
What happens when you do not include this in your frame?1.
You can organize your page.
With frames, you can display more than one HTML document
in the same browser window.
Vertical frame set
What does this example demonstrate?
it demonstrates different frames
Change the numbers and words inside the quotation marks. Describe what happens.1.
it becomes a frame
Horizontal frame set
How can you prevent the user from changing frame sizes?
you can prevent the user from changing frames by removing the code
What do you do for browsers that do not support frames?
you find one that does.
How to use the tag
What does this example demonstrate?
this demonstrates how to use no frames tag.
Why would you use this example?
i would use this example because it shows all 3 examples of this tag.
Mixed frame set
What does this example demonstrate?
this show how to split frames in rows.
What does this example look like?
it looks like a different version or another way to use frames.
Frame set with noresize="noresize"
What does this example demonstrate?
it shows how to use certain frames.
Why would you include this tag?
I would include this tag only if i needed A and B frames.
Navigation frame
What are 2 advantages of frames?
Advantages of frames are being able to split section of your page and having it organized.
Where are the frames in this example located?
The frames are located as links.
How do you get to these frames?
By clicking them.
Inline frame
What does this example demonstrate?
This example demonstrates how to use text in frames.
What happens if a browser does not support inline frames?
You will have to install one that has.
Jump to a specified section within a frame
What does this example demonstrate?
This demonstrates how use frames to organize your websie.
What happens when you do not include this in your frame?1.
You can organize your page.
Tuesday, January 3, 2012
What do you have to do to display a special character in such as (<) in an HTML document?
We must use character entities in the HTML source code.
A common character entity used in HTML is the non-breaking space ( ).What are the three parts of a character entity?
Result,Description,Entity Name
What is an entity name? What is an entity number?
Entity name is the code for the text you are attempting to write.
What is better to use an entity name or an entity number?
Entity numbers is very good.
What is the most common character entity in HTML?
| Result | Description | Entity Name | Entity Number |
|---|---|---|---|
| non-breaking space | |   | |
| < | less than | < | < |
| > | greater than | > | > |
| & | ampersand | & | & |
| " | quotation mark | " | " |
| ' | apostrophe | ' | ' |
Some Other Commonly Used Character Entities:
| Result | Description | Entity Name | Entity Number |
|---|---|---|---|
| ¢ | cent | ¢ | ¢ |
| £ | pound | £ | £ |
| ¥ | yen | ¥ | ¥ |
| § | section | § | § |
| © | copyright | © | © |
| ® | registered trademark | ® | ® |
| × | multiplication | × | × |
| ÷ | division | ÷ | ÷ |
Wednesday, December 21, 2011
HTML 6C
This example demonstrates how to set the font of a text.
How to write a heading in a bold text.
This example demonstrates how to set the font size of a text.
The font size on how to write a heading
This example demonstrates how to set the color of a text.
How to write a heading in a specific color.
This example demonstrates how to set the font, font size, and font color of a text.
How to set the font size, font and color all together for a header.
How to write a heading in a bold text.
This example demonstrates how to set the font size of a text.
The font size on how to write a heading
This example demonstrates how to set the color of a text.
How to write a heading in a specific color.
This example demonstrates how to set the font, font size, and font color of a text.
How to set the font size, font and color all together for a header.
Tell us what you think about the possibility of taking courses online. What are the trade-offs between this approach to education and an experience complete with classrooms and in-person interactions? What are the benefits and drawbacks? Have you ever taken an online course or used an instructional video like those from Vi Hart or Khan Academy? If so, what did you think? Can you see video and online instruction replacing traditional classes? Do you think it is the wave of the future?
I think that taking classes online are not good for people. It blocks people off from the world. Even if you have social problem you still should attend school the normal way. Attending school the normal way causes you to meet new people and experience new things.
People can become isolated from the world and never learn how to verbally communicate with people. Then people would not be able to get certain jobs because they can't socialize with others. That is going to cause a decline on people who can talk on adequate level.
Things like that are bad for the people of the society. No one would be able to talk to anyone or be communicative. That's why online classes are bad.
Tuesday, December 13, 2011
HTML 6B
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.
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.
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.
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.
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.
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?
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
Subscribe to:
Posts (Atom)