Learning Goals for Today
6.1 To develop your personal Web page
To upload your Web page to a Web server so that it becomes visible on
the Internet as
http://www.zainbooks.com/~xxxxxxx/
where xxxxxxx is your user ID
http://www.zainbooks.com/~kim
HTML
Hyper Text Markup Language
<HTML>
<HEAD>
<TITLE>King Khan's Home Page</TITLE>
</HEAD>
<BODY>
<H1>King Khan</H1>
<P><B>Adjunct Lecturer in Computer Science</B><BR>
<A HREF="http://www.zainbooks.com/">Oxford University</A><BR>
Building 1, 3rd Floor, Aiwan-e-Iqbal, Lahore<BR>
+92 42 555 1212<BR>
<A HREF="mailto:kim@yahoo.com">kim@yahoo.com</A><BR></P>
<P>I teach the <A
HREF="http://www.zainbooks.com/Introuction-to-Computing/">Introduction
to Computing</A> course.
</P>
</BODY>
</HTML>
http://www.zainbooks.com/~kim/index.html
http://www.zainbooks.com/~kim
http://www.zainbooks.com/~xxxxxxx
where xxxxxxx is your user ID
<HTML>
…
…
</HTML>
<HEAD>
…
…
</HEAD>
<TITLE> … </TITLE>
<BODY>
…
…
</BODY>
<P> … </P>
Paragraph
<BR>
Line break
<B> … </B>
Bold text
<A HREF = “action” > label </A>
http://
example: “http://www.zainbooks.com”
mailto:
example: “mailto:kim@yahoo.com”
HTML Code
I am at the
<A HREF=“http://www.zainbooks.com”>Oxford University</A>. You can send
me an
e-mail by clicking
<A HREF=“mailto:kim@zainbooks.com”>here</A>.
Browser Display
I am at the Oxford University. You can send me an e-mail by clicking
here.
What have we learned today?
We now know how Web pages are built using HTML
We also know how to make our personal Web pages available to everyone
on the Internet
Useful URL’s
Step by Step HTML tutorial
http://www.w3schools.com/html/DEFAULT.asp
HTML for the Conceptually Challenged
http://www.arachnoid.com/lutusp/html_tutor.html
NCSA’s Beginner's Guide to HTML
http://archive.ncsa.uiuc.edu/General/Internet/WWW/HTMLPrimerAll.html
Homework Assignment
Develop your own home page.
It should be accessible as http://www.zainbooks.com/~xxxxxxx (xxxxxxxx
is your user ID)
Among other things, it should contain
At least one link to http://www.zainbooks.com/~kim
Your (clickable) email address
A paragraph (50-100 words) on what you see yourself doing 10 years from now.
Consult your syllabus for the submission deadline for this assignment
|