Html WebPageDesign

21
SUDHA 1 WELCOME V.Chiranjeevi-MCA RonaldRoss P.G College

description

Introduction To HTML, its a small experiment to show , how to develop a webpage and publish them

Transcript of Html WebPageDesign

Page 1: Html WebPageDesign

SUDHA 1

WELCOME

V.Chiranjeevi-MCA

RonaldRoss P.G College

Page 2: Html WebPageDesign

SUDHA 2

HTML Basics –Building & publishing

your own website

Page 3: Html WebPageDesign

SUDHA 3

What this presentation includes:

• Background about the World Wide Web

• What is HTML?

• Building a simple web page

• A look at more complicated HTML

• Publishing your web page

Page 4: Html WebPageDesign

SUDHA 4

Basic Premise Underlying the World-Wide Web:

Nonlinearity• Books/magazines: Present information in

linear form – typical reader starts at first page and continues to last page.

• Web Pages: Online information is nonlinear – it can be traversed in any order desired by the user using the links you provide within your web pages.

Page 5: Html WebPageDesign

SUDHA 5

What Web Pages Really Are

• Web pages are simply documents that use certain formatting commands to tell computer browsers how to display the information on screen.

• Most common method of developing web pages is to use HTML.

Page 6: Html WebPageDesign

SUDHA 6

What is HTML?

• HyperText Markup Language

• A method of publishing documents that includes commands telling computers how to display the document on screen

• HTML is platform-independent: a document formatted in HTML can be viewed using a web browser on virtually any Windows, Mac, Linux, or Unix computer

Page 7: Html WebPageDesign

SUDHA 7

Creating HTML Documents

• Can be created in any text editor (Note Pad) or word processor (MS Word)

• Special software applications make the job of publishing/managing a website easier, but aren’t necessary for small, simple websites– Microsoft Front Page

– Macromedia Dreamweaver

– Adobe Go Live

Page 8: Html WebPageDesign

SUDHA 8

HTML Tags

• Tags – these are the coded instructions that accompany the text of a web page. Tags are what make your web page work!

• These particular tags (in blue text) tell your browser to put the text between them into the top bar of your browser

<Title> steph moore: My home page at NM

Tech</Title>

Page 9: Html WebPageDesign

SUDHA 9

<Title> steph moore: My home page at NM

Tech</Title>

Page 10: Html WebPageDesign

SUDHA 10

HTML Document Structure

• Head – Contains codes for displaying the document’s background, text and link colors; font family and size; the title of the page; and other formatting information.

• Body – This is where the actual content of the document appears. Content includes text, graphics, and links -- each with the appropriate tag(s) to indicate how it should be displayed.

Page 11: Html WebPageDesign

SUDHA 11

A Very Simple HTML Page<HTML><Head><Title> Ronald Ross</Title></Head><Body><H1> Welcome to Ross Students! </H1><p><p> This website is devoted to providing accurate, researched information on the proper care and feeding of Geochelone sulcata tortoises, which are also known as African Spurred Tortoises, African Spur-Thighed Tortoises, African Desert Tortoises, or by various other names. You will find accurate, useful information here on how to feed, house, and otherwise care for your sulcata tortoises, no matter what your level of expertise. We keep sulcata tortoises, and we work closely with other sulcata keepers around the world. </p></Body>

Page 12: Html WebPageDesign

SUDHA 12

What it looks like in your Browser:

Page 13: Html WebPageDesign

SUDHA 13

Note what the tags have done:

Page 14: Html WebPageDesign

SUDHA 14

Links – the crucial piece of HTML

• Links take you to other webpages within the same site, or to completely different websites.

• Code used to specify links:

<a href =http://www.websitename.com>• ONLY your browser sees this particular code!• You must add some text so that the user can

actually see the link

Page 15: Html WebPageDesign

SUDHA 15

Making Links Visible to Users• Links become visible to users when you

include text and then close your <a> tag:

<a href=“http://www.sulcata-station.org”>Sulcata Station</a>

<a href= “http://www.nmt.edu/”>New Mexico Tech</a>

Page 16: Html WebPageDesign

SUDHA 16

How Links are coded on your webpage

<HTML>

<Head>

<Title> Sulcata Station </Title>

</Head>

<Body>

<H1> Welcome to Sulcata Station! </H1>

<p> <a href=“http://www.sulcata-station.org”> Sulcata Station </a></p>

<p> <a href= “http://www.nmt.edu/”> New Mexico Tech </a></p>

<p>

</Body>

Page 17: Html WebPageDesign

SUDHA 17

What it looks like in your browser

Page 18: Html WebPageDesign

SUDHA 18

More Complicated HTML Page:

Page 19: Html WebPageDesign

SUDHA 19

What it looks like in your Browser:

Page 20: Html WebPageDesign

SUDHA 20

Publishing Your Web Page

Now that you’ve built your web page or web site, you have to “publish” it.

Publishing = transferring the page file(s) to a web server so that other people can see it.

Page 21: Html WebPageDesign

SUDHA 21