objectives what is html what tools are needed creating a web drive on campus (done only once) ...

11
OBJECTIVES What is HTML What tools are needed Creating a Web drive on campus (done only once) HTML file layout Some HTML tags Creating and saving an HTML file Updating an HTML file Transferring file to Web drive

Upload: jemima-ferguson

Post on 29-Dec-2015

213 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

OBJECTIVES

What is HTML What tools are needed Creating a Web drive on campus (done only once) HTML file layout Some HTML tags Creating and saving an HTML file Updating an HTML file Transferring file to Web drive

Page 2: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

HTML

Hyper Text Markup Language Tags surrounding text that let the browser know how to display the text

Tools: Editor Browser Internet connection

Create a web drive “W” on campus Steps

Store files there studentXwww.fullcoll.edu/xxxxxxxx

where X is the last digit of your student id default filename is index.htm

Page 3: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

HTML LAYOUT TAGS

<html><head>

<title>student name student id</title>

</head><body>

</body></html>

This tells the browser that it is an html document

This has document information

This displays on the title bar

This is where the content goes

Page 4: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

HTML TAG SYNTAX

Tag syntax

<tag attribute=“value”>

Text goes here

</endtag>

Page 5: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

HTML TAGS

<html><head><title>student name student id</title></head><body><h1 align="center">My Page</h1><h2>My Page</h2><h3>My Page</h3><h4>My Page</h4><h5>My Page</h5><h6>My Page</h6></body></html>

Page 6: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

HTML TAGS

<html><head><title>student name student id</title></head><body><h1 align="center">My Page</h1><hr color="red" width="50%">Some Information</p><hr color="red" ></body></html>

Page 7: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

HTML TAGS

<html><head><title>student name student id</title></head><body bgcolor=“gold” text=“brown”><h1 align="center">My Page</h1><hr color="red" width="50%"><p>Some information about youSome more information about youAnd yet some more information about you</p>This is one of my <a href="http://www.fullcoll.edu">favorite</a> sites.<hr color="red" ></body></html>

Page 8: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

HTML TAGS

<head><title>student name student id</title></head><body bgcolor=“gold” text=“brown”><h1 align="center">My Page</h1><hr color="red" width="50%"><p>Some information about youSome more information about youAnd yet some more information about you</p>This is one of my <a href="http://www.fullcoll.edu">favorite</a> sites.<hr color="red" ><p align="center">[email protected]</p><a href=“mailto:[email protected]”>Contact Instructor</a></body></html>

Page 9: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

HTML TAGS

<html><head><title>student name student id</title></head><body bgcolor=“gold” text=“brown”><h1 align="center">My Page</h1><hr color="red" width="50%"><p>Some information about youSome more information about youAnd yet some more information about you</p>This is one of my <a href="http://www.fullcoll.edu">favorite</a> sites.<hr color="red" ><p align="center"><i>[email protected]</i></p></body></html>

Page 10: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

Extra Credit Assignment

Create a Web page that displays the following items in the order listed:

1. “Your name Web Page” using the <h1> tag and center it.

2. A horizontal line (hr tag)

3. Some content using the <h3> tagexamples: Hobbies, School goals, Favorite movies or books

4. Add your favorite site as a link

5. A horizontal line (hr tag)

6. Include your email address next, italicize it and center it.

7. Set the page background color to some color other than white

Page 11: OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and

Extra Credit

Save this file as index.htm on your “W” drive

Send the URL to [email protected]

10 extra points

Due Thursday, May 11th