telnet www.opera.com 80
Once this is done and the communication is established, type the following HTTP message quickly (before the connection automatically closes), then press enter/return twice:
GET / HTTP/1.1
Host: www.opera.com
This message specifies:
GET: That we wish to GET a representation of information.
/: That the information we want to get at is stored at the root of the site.
HTTP/1.1: We are speaking using HTTP version 1.1.
Host:: I’m trying to reach a specific site.
www.opera.com: the name of the site is www.opera.com.
Describe how HTML, CSS, and JS files are “parsed” in the browser.
How can you find images to add to a Website?
How do you create a String vs a Number in JavaScript?
What is a Variable and why are they important in JavaScript?
What is an HTML attribute?
Describe the Anatomy of an HTMl element.
What is the Difference between <article> and <section> element tags?
What Elements does a “typical” website include? How does metadata influence Search Engine Optimization? How is the HTML tag used when specifying metadata?
How to start to design a Website.
What is the first step to designing a Website?
What is the most important question to answer when designing a Website?
Why should you use an <h1> element over a <span> element to display a top level heading?
What are the benefits of using semantic tags in our HTML?
Describe 2 things that require JavaScript in the Browser?
How can you add JavaScript to an HTML document?