Chapter4 Flashcards
What to look for while searching for a hosting company?
Technical support, Data transfer, Backups, Domain names, Goodies (email addresses, forums, support for scripting languages)
what is technical supporrt?
Does the hosting company has a good system for answering your technical questions? The better ones will answer your questions quickly either over the phone or via email.
What is data transfer?
This is a measure of the amount of pages and data the hosting company will let you send to your visitors during a given month. Most hosting companies offer reasonable amounts of data transfer for small sites in their most basic plans. If you are creating a site that you expect will have a lot of visitors, you may want to carefully look into this.
What are backups?
Does the hosting company regularly makes a backup of your pages and data that can be recovered in the event that the server has a hardware failure.
Why is it called a domain name rather than a website name?
Because they are different things. If you look at wvww.starbuzzcoffee.com that’s a website name. but only the starbuzzcoffee.com is the domain name. you could also create other websites that use the same domain name like corporate.starbuzzcoffee.com. So a domain name is some thing you can use for a lot of websites.
My hosting company seems to have called my root folder “mydomain_com”, is that a problem?
No at all, Hosting companies call root folders lots of different things. The important thing is that you never know where your root folder is located in the server. and that you can copy your files to it
What is the root folder?
In your computer the root folder is the top-level folder of your pages. On the web server the root folder becomes more important because anything inside the root folder is going to be accessible inside the web.
describe the different parts of a url and tell what it stands for.
Uniform Resource Locator, with it you can retrieve a page from the web. The protocol part tells the browser the method it should use to retrieve the resources(in most cases this is http Hyper text transfer protocol). The website part which consists of the server name and the domain name tells the browser which computer on the internet to get the resources from. And the absolute path tells the server what page you are after.
What’s an absolute path?
The absolute path tells the sever how to get from your root folder to a particular page or file. /cars/new/inventory.html
What is http?
It’s an agreed-upon method (a protocol) for transferring hypertext documents around the web. While hypertext documents are usually just HTML pages, the protocol can also be used to transfer images or any other file that a webpage might need.
We have learned to put relative paths in the page design, how can the server find those links if they aren’t absolute?
When you click on a link that is relative behind the scenes the browser creates an absolute path out of the relative path and the path of the page that you click on.So all the web server sees are absolute paths.
What happens when a browser asks for a directory?
When a web server receives a request like this, it tries to locate a default file in the directory. Typically a default file is called “index.html” or “default.htm”. and if the server finds one of these files, it returns the file to the browser display.
What is title attribute?
it’s an attribute for a element that let’s adding extra information for links and is usually shown as a tool tip.
How to link to elements with ids?
to link to a specific destination in a page just add a # on the end of your link.
bra a href=”index.htm#chai” ketsee Chai Teabra /a ket
is the order of attributes important?
No