<html> This tag is used to begin each html document

Slides:



Advertisements
Similar presentations
HTML. The World Wide Web Protocols Addresses HTML.
Advertisements

INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
1 Outline 9.1Introduction 9.2Markup Languages 9.3Editing HTML 9.4Common Tags 9.5Headers 9.6Text Styling 9.7Linking 9.8Images 9.9Formatting Text With 9.10Special.
 2001 Deitel & Associates, Inc. All rights reserved. 1 Outline 9.1Introduction 9.2Markup Languages 9.3Editing HTML 9.4Common Tags 9.5Headers 9.6Text Styling.
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
 2004 Prentice Hall, Inc. All rights reserved. Introduction to XHTML: Part 1.
Computer Science 103 Chapter 2 HyperText Markup Language (HTML)
 2003 Prentice Hall, Inc. All rights reserved. Chapter 4 - Introduction to XHTML: Part 1 Outline 4.1 Introduction 4.2 Editing XHTML 4.3 First XHTML Example.
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
Define html document byusing Example : Title of the document The content of the document......
1 Outline 3.1 Introduction 3.2 Editing HTML 3.3 First HTML Example 3.4 W3C HTML Validation Service 3.5 Headers 3.6 Linking 3.7 Images 3.8 Special Characters.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
1 HTML Basics Dr. Awad Khalil Computer Science Department AUC.
1 Essential HTML coding By Fadi Safieddine (Week 2)
 2002 Prentice Hall, Inc. All rights reserved.2 Chapter 2 — Introduction to HyperText Markup Language 4: Part I Outline 2.1Introduction 2.2Markup Languages.
McGraw-Hill/Irwin Copyright © 2013 by The McGraw-Hill Companies, Inc. All rights reserved. Extended Learning Module F Building a Web Page with HTML.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
1 Introduction to HTML: Part 1 Outline Introduction Elements and Attributes Editing HTML Common Elements Headers Images Unordered Lists Nested and Ordered.
1 HTML John Sum Institute of Technology Management National Chung Hsing University.
What is Markup and Markup Languages? What is HTML? A Basic HTML Document Basic HTML Tags Tag Attributes and Text Formatting Tags Insert Hyperlinks Add.
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,
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
1 Introduction to XHTML: Part 1 Outline Introduction Elements and Attributes Editing XHTML Common Elements W3C XHTML Validation Service Headers Linking.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Web programming Part 1: HTML 由 NordriDesign 提供
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
Revision Webpage design HTML.   FACE  Attributes  Marquee  Define the following terms.
What you can see in the picture?
Introduction to HTML5.
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
HTML What is HTML? HTML stands for Hyper Text Markup Language
HTML basics
Chapter 24 – Introduction to XHTML Basic: Part I
Chapter 3 – Introduction to HyperText Markup Language 4 (HTML 4)
Computer Fundamentals 2
Images in HTML PowerPoint How images are used in HTML
Advanced Web Programming Intro to HTML5 part 1
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
HTML Lab 5 10/1/2015.
HTML GUIDE Press F5 and then
Chapter 9 – Introduction to HyperText Markup Language 4 (HTML 4)
Elements of HTML Web Design – Sec 3-2
Chapter 4 - Introduction to XHTML: Part 1
HTML Robert McIntosh
Introduction to HTML: Part 1
COMPUTING FUNDAMENTALS
Introduction to HTML: Part 1
10 Minute University Richard Fisher
Computers and Scientific Thinking David Reed, Creighton University
Introduction to HyperText Markup Language (HTML)
Basic HTML and Embed Codes
Chapter 4 - Introduction to XHTML: Part 1
HTML 12/27/2018.
1 Introduction to XHTML.
Introduction to HTML- Basics
Chapter 4 - Introduction to XHTML: Part 1
Pertemuan 1b
Computer Science Department
Introduction to HTML.
Pertemuan 1 Desain web Pertemuan 1
Johan Ng and Muhammad Hazzry
Hypertext Markup Language
Images in HTML PowerPoint How images are used in HTML
Chapter 4 - Introduction to XHTML: Part 1
Presentation transcript:

<html> This tag is used to begin each html document <html> This tag is used to begin each html document. Html means HyperText Markup Language

BASIC HTML PROGRAMMING ETEC 562 Facilitated by ROBERT CALVERY

Every webpage must include the following in order to be displayed in a browser. <html> <head> <title> </title> <body> </body> </head> </html>

Not all of the tags have to use an ending tag Not all of the tags have to use an ending tag. Examples that do not require an ending tag are: <img src> Tells the browser where to find the the image to be displayed on the webpage. <frame> Creates a split section in a webpage. <br> Creates a break in a line of text. <p> Creates a paragraph break. <hr> Creates a horizontal line on the page.

When you have multiple tags you must close them in last created -- first closed order. Example: <b> <i> This is bold and italicized text. </i> </b>

Creating an EMAIL LINK <body> <p>My email address is <a href = "mailto:robert_7_calvery@yahoo.com"> Robert Calvery </a> . Click the address and your browser will open an e-mail message and address it to me. </p> </body>

HEADER SIZES <body> <h1>Level 1 Header</h1> <h2>Level 2 header</h2> <h3>Level 3 header</h3> <h4>Level 4 header</h4> <h5>Level 5 header</h5> <h6>Level 6 header</h6> </body>

Counter-Controlled Repetition with for structure. <html xmlns = "http://www.w3.org/1999/xhtml"> <head> <title>Counter-Controlled Repetition</title> <script type = "text/javascript"> for ( var counter = 1; counter <= 7; ++counter ) document.writeln( "<p style = \"font-size: " + counter + "ex\">XHTML font size " + counter + "ex</p>" ); </script> </head> <body></body> </html>

Creating HYPERLINKS <body> <h1>Here are my favorite sites</h1> <p><b>Click a name to go to that page.</b></p> <p><a href = "http://www.dogpile.com">Dogpile</a></p> <p><a href = "http://www.prenhall.com">Prentice Hall</a></p> <p><a href = "http://www.yahoo.com">Yahoo!</a></p> <p><a href = "http://www.usatoday.com">USA Today</a></p> </body>

Using Images as Navigation Buttons <body> <p> <a href = "links.html"> <img src = "buttons/links.jpg" width = "65" height = "50" alt = "Links Page" /> </a><br /> <a href = "list.html"> <img src = "buttons/list.jpg" width = "65" height = "50" alt = "List Example Page" />