What is the typical web experience?
Web browser, Internet Service, Server, and Database
What does Web pages do?
Store on the Server.
What does the web browser do?
Requests a page. Understanding and displaying HTML content. Ignore white space when rendering HTML.
What does internet service do?
Sends the request to the server
What does server do
Process/send back content, and files in various advanced formats. After processing the request/content, send back data in HTML.
What does HTML mean?
Hyper Text Markup Language
What does HTML consist of?
“Tags”, denoted by ><
What does <html> mean
Browser the beginning and end of content
What does <head> mean
Contains basic metadata about the page
What does <title> mean</title>
Name of the window/tab for the page
What does <body> mean
Main content area of the web page
Is it true that each elements have a open and close tag?
True
What does “<div> mean
Set of text with a common set of formatting
What does <b> mean?</b>
Text contained bold
What does <i> mean</i>
Make the text contained italicized
What will web browser do if you have blank lines in HTML
Ignore it and put the text on the same line, unless you indicate a line break.
What does <br></br>
Creates a line break. Standalone tag.
What does this / mean at the end?
Self-contained start and end tag. Equivalent to <br></br></br>
What does <a> mean?</a>
Hyper link. It should have a href attribute for the link’s destination. Open the link in a new window, reuse a separately named window or open in the active window.
How to upload file to cPanel?