|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
HTML - Hyper Text Markup Language Now that everyone has had some practice writing HTML, we'll talk a little more about it. It's a tag based language. There is an opening tag, a closing tag, and everything inside of those tags are part of it. Tags can have attributes, which describe a little more about the tag. <html> <head></head> <body> <a href="nextpage.html"> This is what the link says </a> </body> </html> You can see the tags are paired. the href="" is an attibute of the <a> tag. The <a> tag is a link. The attribute tells it where to link to. Tables are used to lay out content, just like in Word <table> <tr> XML - eXtensible Markup Language XML is also a tag based language. Where HTML has set tags you can use, in XML you make up your own tags. It is used in business to transfer data between different progams such as between a website and a database.
WYSWYG - What you see is what you get Visual editors for web pages and other programs. We will use Word to build a page quickly
JavaScript - Client side scripting language We talked about the script tag, functions, events, and how to put scripts into your web page.
Java Applets - We talked about the applet tag and how to put applets on your web page
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||