Introduction to HTML 2006 CIS 101 What is

  • Slides: 18
Download presentation
Introduction to HTML 2006 CIS 101

Introduction to HTML 2006 CIS 101

What is the Internet? l l Global network of computers that are connected and

What is the Internet? l l Global network of computers that are connected and communicate via a series of Protocols are rules that specify the transmission of data

Internet protocols l l l TCP/IP – network protocols that govern how data moves

Internet protocols l l l TCP/IP – network protocols that govern how data moves around the Internet FTP – allows files to be transferred HTTP –transmits of Web pages

What is the World Wide Web? l l l The youngest part of the

What is the World Wide Web? l l l The youngest part of the Internet (~1990) Part of the Internet that supports multimedia and consists of a collection of linked documents Multimedia supported with HTTP (Hypertext Transfer Protocol)

Web Servers l l Computer connected to the Internet that stores and sends Web

Web Servers l l Computer connected to the Internet that stores and sends Web pages and other files Any computer with server software and Internet connection can be a server Copying Web pages to a server is called publishing Once a Web page has been published it can be viewed on any computer with an Internet connection

Internet traffic l l l These Web sites display the global distribution of the

Internet traffic l l l These Web sites display the global distribution of the Internet: To view internet traffic http: //www. internettrafficreport. com/ To trace the connection to a server http: //visualroute. visualware. com/

Web sites l l l Related collection of Web pages created and maintained by

Web sites l l l Related collection of Web pages created and maintained by an individual, company, educational institution or other organization Each Web site has a starting document (usually index. html) Every Web site is stored on or runs from one or more Web servers

Web browser l Software that interprets and displays Web pages Input ->HTML Output ->Graphical

Web browser l Software that interprets and displays Web pages Input ->HTML Output ->Graphical Display

URLs l l l Web page location is defined as a URL (Uniform Resource

URLs l l l Web page location is defined as a URL (Uniform Resource Locator) URL is made up of protocol (ftp, http, etc), Web server, and (optional) Web page Example (Excel Quick Reference): http: //www. scsite. com/offxp/qrex 1. htm

Web documents l l Web documents contain text, multimedia, and links to other documents

Web documents l l Web documents contain text, multimedia, and links to other documents Also know as Web pages, are written in HTML (Hypertext Markup Language)

What is HTML? l Platform independent page description language – – l l Will

What is HTML? l Platform independent page description language – – l l Will display on any computer HTML describes what a Web document will look like Uses special instructions called tags to define the structure and layout of a Web document combines HTML tags and text

HTML Resources l Go to Blackboard site, Syllabus – – l Text web site

HTML Resources l Go to Blackboard site, Syllabus – – l Text web site Web Design Group HTML Reference (zip file you can download to your computer), or see Web site at http: //www. htmlhelp. com/ Barebones Guide to HTML http: //werbach. com/barebones/barebone. html

Elements of HTML document l l HTML elements include headings, paragraphs, hyperlinks, lists, images,

Elements of HTML document l l HTML elements include headings, paragraphs, hyperlinks, lists, images, and other graphical elements Most HTML elements follow this pattern: start tag content end tag example: <b>This is now bold</b>

Web editors l l In order to create HTML documents you need to be

Web editors l l In order to create HTML documents you need to be able to create a text file with an extension of. htm or. html Can use HTML editor or any text editor Text uses Notepad, available on most computers We will use freeware Web authoring system HTML editor http: //www. nvu. com/

Nvu l l Freeware version of commercial Web authoring tools such as Dreamweaver and

Nvu l l Freeware version of commercial Web authoring tools such as Dreamweaver and Frontpage Will use this software in class for HTML and Java. Script Access software through Blackboard or http: //www. nvu. com/ Lab machines – look under internet applications

Try it out l l Type in some text and make up a page

Try it out l l Type in some text and make up a page Click preview to see the page Save as first. htm on desktop Open up file with IE

The elements of a Web page l Title – first thing you see –

The elements of a Web page l Title – first thing you see – – l l Displayed in bar above browser Used when bookmarking Web page Body – content that displays in browser window Background – like wallpaper in Windows, can be color or picture

Elements cont. l l l Normal text – the bulk of most Web documents

Elements cont. l l l Normal text – the bulk of most Web documents Lists – bulleted or numbered Formatted text – bold, italic, fonts Graphical elements – HR (horizontal rule), images Hyperlinks – connection to another document