Web Development

Lab 1 Questions:

What is an IP address? How does it work?

An IP addrees is a unique string of numbers separated by periods that identifies each computer using the Internet Protocol (IP) to communicate over a network. One part of the IP identifies the host computer and the other part identifies the network to which it belongs to.

What is a domain name? How does it relate to the IP address?

A domain name consists of, at least, a top-level and a second-level domain. A top-level domain (TLD) is the part of the domain name located to the right of the dot ("."). The most common TLDs are .com, .net, and .org. A domain is simply a quicker way to get to a website then the IP address

What does HTML stand for?

Hypertext Markup Language

What is the default page named in a website (e.g. the home page)?

index.html

What is the image html tag?

img src="#"

Lab 2 Questions:

What is a server? How is it different than a standard computer?

A server is a computer program that provides services to other computer programs and their users in the same or other computers.A desktop computer system typically runs a user friendly operating system and desktop applications to facilitate desktop-oriented tasks. In contrast, a server manages all network resources

What are the tags needed for HTML tables?

< Col > (Specifies column properties for each column within a colgroup element), < Thead > (Groups the header content in a table), < Tbody > (Groups the body content in a table), < Tfoot > (Groups the footer content in a table)

What does an iFrame allow you to do?

An iFrame tag allows you to display a second, separate webpage within your main webpage. The < iframe > tag is used to define inline frames in your pages

What does the < a > tag do?

The < a > tag defines a hyperlink, which is used to link from one page to another

What does the < tr > tag do?

The < tr > tag defines a row of cells in a table

Homepage