|
|
HTML intro
HyperText Markup Language (or HTML) is the 'language' that browsers interpret to display web pages. It is also what we use to write web pages. There is nothing difficult or particularly flash about HTML, they are just letters that you include in the text files that you place onto a web server (any computer that is connected to the Internet and running a web server).
Java is a platform neutral programming language that is inserted into your web pages. The browser interprets this program and does what it is told to do (they are just words and characters). These things might be about graphics, a counter, displaying varying content, and lots of other tricks. (We won't be learning Java.) The Common Gateway Interface is a way for a program to (called a CGI) work in conjunction with a web server. CGI's are used to 'value add' HTML. For example a CGI would be used to let a web page talk to a database, or to place a counter on a web page, or to process a web based form. The CGI has to be running in association with the web server, so this can only be done if there are CGI's running on the web server you use, you are allowed to use them, and you know how to write 'for' them. You will use some CGI's. While HTML is the basis for writing on the Web, it is a limited hypertext model from the point of view of writing, and linking.
|