Web Pages and Code Pages


Summary

HTML coding; Representing various code pages with special emphasis on Unicode; Formatting; Tables; Links; Multimedia content, and other bells and whistles, using ready-made software to design Web pages.


Homework

HW # 2 (due end of Week 2): Create a Web page in your personal space which contains non-English characters, tables, images (e.g., your mug shot), sounds (e.g., you cursing in an exotic language), and links. E-mail the link to your page to me


Resources

This is a picture surounded by text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text, and more text

<img src="cli.gif" align=left>

Forms:

Field:

Box:

<form action="mailto:Danko.Sipka@asu.edu" method="send" enctype="text/plain">
Field: <input name=coolfield size=65><p>
Box: <textarea name=cooltext rows=5 cols=65></textarea><p>
<input type=submit value="Send">
</form>

Flashy pages:

<a href="vitae.htm" onMouseOver='rollover1.src="picture2.gif"'
onMouseOut='rollover1.src="picture1.gif"'>
<img src="picture1.gif" name="rollover1" border="0"></a>

Cascading style sheets

One example. If you wish you links to not to be underlined but rather with a changed background (as on this page), you have two choices:

Either you put the following in the head section:

<STYLE TYPE="text/css">
<!--
A {text-decoration:none}
A:hover {background:blue; color:white}
//-->
</STYLE>

or, if you want to use the same style in several files, you create a file called, e.g., mystyle.css, which contains the following two lines:

A {text-decoration:none}
A:hover {background:blue; color:white}
and you put the following in the head section of your Web page

  <LINK rel="stylesheet" href="mystyle.css" type="text/css">

You can get more bells and whistles using Macromedia Flash. Take a look at two examples here. Flash Tutorial is here.


Example

Last year's project