Name: Colin Yang
Period: 7
Assignment: Web Development Lab #2
Lab #2 Questions | Answers |
---|---|
1. What is a server? How is it different than a standard computer? | A server is a computer program that provides access to information to other computer users. It manages the network resources, and includes different servers such as the file server, the print server, and the database server. A desktop computer, unlike a server, is run by a user friendly operating system and can operate multiple tasks. |
2. What are the tags needed for HTML tables? | In order to make a HTML table, a "table" tag and one or more "tr", "th", and "td". |
3.What does an iFrame allow you to do? | The iFrame allows you to display a secondary website in the webpage. For example, the intro to computer programming page on ahs-cs.com consists of 4 different webpages withing the main page. |
4.What does the "a" tag do? | The "a" tag tells the computer that there is a hyperlink being placed on the webpage. The hyperlink connects the main page to another sub page or a different website. |
5. What does the "tr" tag do? | The "tr" tag defines a row in the table. To use it, the user would type in whatever he/she desires between the two "tr" tags, and once completed, the statement will show up in one single row. |