Web Page Development Identify elements of a Web Page Start Notepad

Slides:



Advertisements
Similar presentations
Introduction to HTML. A Web Page is.. An ASCII (text) file.. Whose filename ends with.htm or.html –index.html or cookie-recipe.htm Contains HTML tags.
Advertisements

Chapter 3 – Web Design Tables & Page Layout
HTML popo.
Learning HTML. > Title of page This is my first homepage. Tells Browser This is an HTML page Basic Tags Tells Browser End of HTML page Header information.
Chapter 2 HTML Basics Key Concepts
Creating and Editing a Web Page Using Inline Styles
How Tags are used to form your Web Page
Creating and Editing a Web Page
Getting Started with HTML HTML – Hypertext Markup Language.
HTML Hypertext Markup Language –First proposed by CERN in 1989 –It is non-linear so it allows you to jump from place to place –Markup refers to the structure.
Saving a Word Document as a Web Page
Creating and Editing a Web Page
Creating Tables in a Web Site Using an External Style Sheet HTML5 & CSS 7 th Edition.
Introduction to HTML. Topics HTML –What is HTML –Parts of an HTML Document –HTML Tags.
Creating and Editing a Web Page
HTML Comprehensive Concepts and Techniques Second Edition Project 3 Creating Tables in a Web Site.
Web Design Using HTML Codes. WHAT DO I NEED TO BEGIN DESIGNING A HOME PAGE? 1.YOU NEED A FOLDER (also called a DIRECTORY) You should set up a folder or.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
Basic HTML Hyper text markup Language. Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
Creating and Editing a Web Page using HTML IMED1316.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Creating and Editing a Web Page Project 2. Project Objectives Project 2: Creating and Editing a Web Page 2 Identify elements of a Web page Start Notepad.
More Basic HTML. Add spacing (single & double space) Save Refresh Add horizontal rule Add comments Add styles Add headings Add features Add alignments.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
Chapter 4 (through page 110) Fluency with Information Technology 4 th edition by Lawrence Snyder (slides by Deborah Woodall : 1.
HTML Comprehensive Concepts and Techniques Second Edition Project 1 Creating and Editing a Web Page Review for Monday’s Test September 17, 2009.
Just Enough HTML How to Create Basic HTML Documents.
WEB PAGE DESIGN FOR CHIARVELLE PIZZA Open Notepad Click on Start Point to Accessories Point to Notepad Click Notepad Click the Maximize button Click Edit.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
All you ever needed to know…and more!. H.T.M.L. HyperText Mark-up Language Web’s programming language All web browsers Set of instructions Written with.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
1 Creating a Second Web Page This section shows you how to create the Huntington Beach Web site.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
HTML: Hyptertext Markup Language Doman’s Sections.
Chapter 5 Quick Links Slide 2 Performance Objectives Understanding Framesets and Frames Creating Framesets and Frames Selecting Framesets and Frames Using.
Project 2 Web Page Design Creating and Editing a Web Page Pages
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
HTML Comprehensive Concepts and Techniques Third Edition 2 nd Project Creating and Editing a Web Page.
HTML Basics. HTML Introduction Stands for HyperText Markup Language. HTML files are plain text files with mark ups. Some characteristics of HTML: –No.
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
Creating Your First Web Page – Topic: Creating a wiki, blog, image blog and podcast Click Arrow - Next Slide 1.
4 HTML Basics Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and.
HTML Concepts and Techniques Fifth Edition Chapter 4 Creating Tables in a Web Site.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML Concepts and Techniques Fifth Edition Chapter 3 Creating Web Pages with Links, Images, and Formatted Text.
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
Creating and Editing a Web Page
HTML Comprehensive Concepts and Techniques Second Edition Project 2 Creating a Web Site with Links.
Basic HTML Programming Technology Education Ellsworth Community Middle School Communication Systems.
This shows CIS17 and the first day introduction..
What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup.
Creating and Editing a Web Page Using Inline Styles
HTML-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
1 Your Web Page title body of Web page main heading H2 heading bulleted list paragraph.
Creating Web Pages with Links, Images, and Embedded Style Sheets
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
Project 02 Creating and Editing a Web Page Concept Map of Unit Creating and Editing a Web Page Key Learning Understand the elements to create a web page.
1 Introduction to HTML. 2 Definitions  W W W – World Wide Web.  HTML – HyperText Markup Language – The Language of Web Pages on the World Wide Web.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
HTML AN INTRODUCTION TO WEB PAGE PROGRAMMING. INTRODUCTION TO HTML With HTML you can create your own Web site. HTML stands for Hyper Text Markup Language.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
HTML Basics.
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
LAB Work 01 MBA 61062: E-Commerce
Creating and Editing a Web Page
HyperText Markup Language
Presentation transcript:

Web Page Development Identify elements of a Web Page Start Notepad Describe the Notepad window Enter the <HTML>, <HEAD>, <TITLE>, and <BODY> tags Enter a paragraph of text, a bulleted list, and HTML tags Save an HTML file

Web Page Elements Title Bookmarks Body Background Normal text Paragraph Bulleted list Headings Images Horizontal Rules Image map Hotspot Animated images Hyperlinks

Web Page Elements title body heading horizontal rule image paragraph bulleted list links animated image

Entering HTML Tags and Text Four tags define the overall structure of standard Web pages: <HTML> and </HTML> Indicates file is an HTML document <HEAD> and </HEAD> Introduction to the rest of the file Indicates the area where the title will be placed <TITLE> and </TITLE> Indicates the title that will display in the title bar <BODY> and </BODY> Indicates the boundaries of the Web page

Basic HTMl tags <html> <Title>MY PAGE</Title> <Body> ….. </Body> </html>

Entering Initial HTML Tags initial tags insertion point It is good form to be consistent when you type tags, adhering to a standard practice

Entering Initial HTML Tags all Web page content will be placed here ending BODY and HTML tags If you notice an error in the text, use the BACKSPACE key to erase all the characters back to and including the one that is incorrect

Saving the HTML File Click the Save button

Using a Browser to View a Web Page After you save your HTML file, you may view your Web page in a browser The HTML file displays in your browser just as it would on the Web Windows allows you to view the page in your browser while keeping Notepad open

Color Codes In order to change text colors, you will need two things: 1. A command to change the text. 2. A color code (A hex code). The color codes, as I said above, are technically called Hex Codes.. The codes are not too user friendly, and you'll need a chart to tell you what code makes what color. See color code examples

Background Colors

Adding Background Color Locate the 6-character code of the color you wish to use

You have the ability to change full page text colors over four levels: <TEXT="######"> - This denotes the full page text color. <LINK="######"> - This denotes the color of the links on your page. <ALINK="######"> - This denotes the color the link will flash when clicked upon. <VLINK="######"> - This denotes the colors of the links after they have been visited. These commands come right below the <TITLE> commands. Again, in that position they affect everything on the page. Also... place them all together inside the same command along with any background commands. Something like this: < BODY BGCOLOR="######" TEXT="######" LINK="######" VLINK="######">

You can also use an image as a background, e.g. http://www.kean.edu/~gkolodiy/3122/blue_pap.gif <html> <Title>MY PAGE</Title> <Body background=“blue_pap.gif”> <Body> ….. </Body>

Headings Used to separate text and introduce new topics Vary in size, from <H1> through <H6> Use the same sized heading for the same level of topic

Paragraphs Most text on Web pages is in paragraph format The <P> tag has an optional ending tag When a browser finds a <P> tag, it starts a new line and adds a paragraph break Try not to type large sections of text without having paragraph breaks

<P>Hello there</P> Hello there<BR> Hello there paragraph tag and text The <BR> (break) tag breaks a line of text and starts a new line, but does not add vertical spacing like a <P> tag

Creating a List Lists structure your text in outline format Unordered (bulleted) lists <UL> and </UL> marks the beginning and end of unordered lists Ordered (numbered) lists <OL> and </OL> marks the beginning and end of ordered lists The <LI> and </LI> tags define list items The TYPE attribute defines the default bullet or number type

Unordered Lists <H3>Unordered Lists</H3> <UL TYPE=“disc”> <LI>First item – type disc</LI> <LI>Second item – type disc</LI> </UL> <UL TYPE=“square”> <LI>First item – type square</LI> <LI>Second item – type square</LI> <UL> <UL TYPE=“circle”> <LI>First item – type circle</LI> <LI>Second item – type circle</LI>

Ordered Lists <H3>Ordered Lists</H3> <OL TYPE=“1”> <LI>First item – type 1</LI> <LI>Second item – type 1</LI> </OL> <OL TYPE=“A”> <LI>First item – type A</LI> <LI>Second item – type A</LI> <OL TYPE=“a”> <LI>First item – type a</LI> <LI>Second item – type a</LI> <OL TYPE=“I”> <LI>First item – type I</LI> <LI>Second item – type I</LI> <OL TYPE=“i”> <LI>First item – type i</LI> <LI>Second item – type i</LI>

Creating a Bulleted List tags and text

Go to<A href="page..htm>My page</A> Go to My page

Your Web Page title main heading paragraph H2 heading body of Web page bulleted list

<Table border=2> <TR> <TD>1<TD><TD>1A<TD><TD>1B<TD> <TD>2<TD><TD>2A<TD><TD>2B<TD> <TD>3<TD><TD>3A<TD><TD>3B<TD> <Table> <Table border=2> <TR> <TD>1<TD> <TD>2<TD> <TD>3<TD> <Table>

Forms (things to fill in) <FORM METHOD="POST" ACTION= " "> A One-Line Text Box <INPUT TYPE="text" NAME="name" SIZE="30"> A Bigger Text Box <TEXTAREA NAME="comment" ROWS=6 COLS=40> Input Buttons <INPUT TYPE="radio" NAME="heading of button" VALUE="button name"> Example