Exercise 1.1 and 1.2 Flashcards
ISP meaning and definition
Internet Service Provide: internet access
IP meaning and definition
Internet Protocol: Phone number for the internet (every device is assigned a separate number)
HTTP meaning and definition
Hypertext Transfer Protocol: The web uses browsers to transmit data through this.
HTTPS meaning and definition
Hypertext Transfer Protocol Secure: Allows for encryption, making it safer
URL meaning and definition
Uniform Resource Locator: Easy way to remember web addresses
Web server definition
A computer that stores all the files that makeup a webpage and uses HTTP to serve those files to web clients.
Web Browser definition
Sends requests to web servers to display web pages (chrome, etc..)
Website definition
A single domain name that contains one or more web pages
Web page definition
A document viewed in a browser that’s usually written in HTML
Domain definition
A name denoting the location of a website or group of websites
Directory definition
A catalog of websites or files
Protocol example
https:
Domain example
google.com
Directory example
anything after google.com/
Parses definition
analyzes
HTML meaning and definition
Hypertext Markup Language- tells your browser how to process and present the text
HTML Elements definition and example
A single piece of an HTML document or web page. Ex: <div class="container">Hello world!</div>
HTML Tags definition and example
Building blocks of HTML. Ex: <div> and </div>
HTML Attributes definition and example
Used to define the characteristics of the element. Ex: class=”container”
Where does an HTML Attribute go?
Placed within an HTML element’s opening tag
“html” tag definition
Holds together all of the HTML elements on a page. Wraps around all other content.
What is the exception that goes before the “html” tag and is required?
DOCTYPE