Skip to content

Instantly share code, notes, and snippets.

@stefanosc
Last active December 28, 2015 11:29
Show Gist options
  • Save stefanosc/7494030 to your computer and use it in GitHub Desktop.
Save stefanosc/7494030 to your computer and use it in GitHub Desktop.
What is HTML? What is CSS? What is Javascript?

HTML is a markup language, used to create HTML pages. CSS stands for cascading style sheet and is a language developed to apply styling properties to HTML documents. Javascript is a so called client side programming language that allows to manipulate a webpage after it has already been rendered in the client browser

What are the major parts of an HTTP request?

request line request headers (optional) blank line request message (optional, may contain POST data)

What are the major parts of an HTTP response?

response line response headers (optional) blank line response message

How do you submit an HTTP POST request, with a "username" attribute set to "bob"? What if we wanted a GET request instead?

We can use a

tag in the following way

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment