70 likes | 91 Views
Make Up Your Own Home Page in Waseda. Hiroshi Toyoizumi. A Simple HTML Example. <html> <head> <TITLE> You Can Make A Simple HTML Example </TITLE> </head> <body> <H1> My First Home Page </H1>
E N D
Make Up Your Own Home Page in Waseda Hiroshi Toyoizumi
A Simple HTML Example <html> <head> <TITLE> You Can Make A Simple HTML Example </TITLE> </head> <body> <H1> My First Home Page</H1> <P>Welcome to the world of HTML.This is the first paragraph. While short it is still a paragraph!</P> <P>And this is the second paragraph.</P> <P>This is an example of link. <A HREF="http://www.u-aizu.ac.jp/~toyo">Click it!</A> </P> <P>This is also an example of inline image. Can you find where the original is?<BR> <IMG SRC=http://www.waseda.jp/sils/img/ph_title.jpg> </P> </body> </html>
Make your own HTML file • Edit the following sample. • Save it with an appropriate name on your desktop. • Preview your file by your browser. • You can add anything you like (e.g. your picture, your hobby, …) Sample <html> <head> <TITLE> This is title of your page </TITLE> </head> <body> <H1> This the header! </H1> <P>Welcome to the world of HTML. This is the first paragraph. While short it is still a paragraph!</P> <P>And this is the second paragraph.</P> <P>This is an example of link. <A HREF="http://www.u-aizu.ac.jp/~toyo">Click it!</A> </P> <P>This is also an example of inline image. Can you find where the original is?<BR> <IMG SRC=http://www.waseda.jp/sils/img/ph_title.jpg> </P> </body> </html>
Upload and Your Server • Your homepage can be accessed on the internet if you upload your file on your waseda server. • Your server is for example ftp.aoni.waseda.jp, depends on your waseda email address.
Upload Your File • Start FFFTP. • Connect ftp.xxx.waseda.jp, using your account name and password. • Open the “public_html” folder. • Drag and drop your file into your “public_html” foler. • Don’t use Japanese for the file you upload.
Checking and Evaluate Your Homepage • Start Internet Explorer • Go to http://www.xxx.waseda.jp/your_account/your_file_name and check your home page.