Q.Nand1 HTML Creating an HTML Document Lesson 2. Q.Nand2 Overview Creating an HTML Document: –HTML syntax –Creating Basic Tags –Displaying Your HTML Files.

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

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.
HTML popo.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
HTML Introduction Creating a Web Page.
Creating a Web Page HTML: The Language of the WEB.
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
Introduction to HTML CPS470 Software Engineering Fall 1998.
Basic HTML UCR Webmasters Support Group Derk Adams.
HTML: PART ONE. Creating an HTML Document  It is a good idea to plan out a web page before you start coding  Draw a planning sketch or create a sample.
HTML Notes Chapters 1--6 Codes used in creating HTML documents are called tags. Tags are always enclosed in left ( ) angle brackets. Tags can be upper.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
Basic HTML Hyper text markup Language. Lesson Overview  In this lesson, you will learn to:  Create Lists  Horizontal rule (line)  Create a page for.
Define html document byusing Example : Title of the document The content of the document......
HTML Essentials Markup ( Part I ). Why Markup ? Markup gives meaning and structure to your web page Creates a relationship between the elements.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
Tutorial 1 Developing a Basic Web Page. New Perspectives on HTML, XHTML, and XML, Comprehensive, 3rd Edition Objectives – Lesson 1 Introduction to the.
CS134 Web Design & Development Creating a Basic Web Page Mehmud Abliz.
1.  Describe the anatomy of a web page  Format the body of a web page with block-level elements including headings, paragraphs, lists, and blockquotes.
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
1 Web Developer Foundations: Using XHTML Chapter 2 Key Concepts.
HTML Tags Basic Tags Doctype or HTML Head Title Body Use the website to find the definitions
CSCI 1101 Intro to Computers
XP Mohammad Moizuddin Creating Web Pages with HTML Tutorial 1 1 New Perspectives on Creating Web Pages With HTML Tutorial 1: Developing a Basic Web Page.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
Unit 1 Changing the Appearance of Text. TITLE CORNELL NOTES TOPIC: NOTES: Summary: HTML Hypertext Markup Language 1 st and last tag on a page Tags Tags.
Explorers Guild April 27, What is HTML? Hypertext Markup Language (HTML) is the basic building block of the World Wide Web page. HTML files are.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
Just Enough HTML How to Create Basic HTML Documents.
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,
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
CPT 499 Internet Skills for Educators Session Ten Class Notes.
Chapter 2 Web Page Design Mr. Gironda. Elements of a Web Page These are things that most web pages use.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML 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 ( HYPER TEXT MARK UP LANGUAGE ). What is HTML HTML describes the content and format of web pages using tags. Ex. Title Tag: A title It’s the job.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
HTML Basics Computers. What is an HTML file? *HTML is a format that tells a computer how to display a web page. The documents themselves are plain text.
HTML Introduction. Lecture 7 What we will cover…  Understanding the first html code…  Tags o two-sided tags o one-sided tags  Block level elements.
CS 100 Introduction to Web Page Construction and HTML.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
XP 1 HTML Tutorial 1: Developing a Basic Web Page.
HTML Tags BTT1O. HTML  Documents written in hypertext markup language can be interpreted by all web browsers.  This language lets the web page developer.
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.
1 HTML. 2 Full forms WWW – world Wide Web HTTP – Hyper Text Transfer Protocol HTML – Hyper Text Markup Language.
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.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
HTML Introduction. Lecture 7 What we will cover…  Understanding the first html code…  Tags o two-sided tags o one-sided tags  Block level elements.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
Tutorial 1 – Creating Web Pages With HTML
Web Basics: HTML/CSS/JavaScript What are they?
Elements of HTML Web Design – Sec 3-2
Creating a Home Page in HTML
Elements of HTML Web Design – Sec 3-2
COMPUTING FUNDAMENTALS
Web Design and Development
Tutorial Working with Block-Level Elements
WJEC GCSE Computer Science
Presentation transcript:

Q.Nand1 HTML Creating an HTML Document Lesson 2

Q.Nand2 Overview Creating an HTML Document: –HTML syntax –Creating Basic Tags –Displaying Your HTML Files Creating Headers, Paragraphs, and Lists: –Creating Header Tags –Entering Paragraph Text –Creating Lists. –Creating Character Tags.

Q.Nand3 Sample Resume It’s always a good idea to plan the appearance of your Web page on the paper before you start to put it in HTML coding

Q.Nand4 HTML syntax The HTML syntax is the rules that govern the construction of intelligible HTML documents. Document Content Example: Johnny Brown Notes: Tags are not case sensitive, so if you typing or will be the same. When you open tag you should close it at the end. Like …..

Q.Nand5 Creating Basic Tags The Resume of Johnny Brown This is body of HTML

Q.Nand6 Displaying Your HTML File Title Body

Q.Nand7 Creating Header Tags HTML supports six level of headers through. is the largest and is the smallest. Even the smallest header appear in larger font than the normal text. Syntax of Header: This is H1 Header

Q.Nand8 Six Header Levels This is an H1 Header This is an H2 Header This is an H3 Header This is an H4 Header This is an H5 Header This is an H6 Header Header Tag can contain additional properties like align in text in the: Left, Right, or Center. Eg: Header 1 Header 1

Q.Nand9 Entering Paragraph Text Type to begin the paragraph. Enter the text for the paragraph. Type to close the paragraph tag. Syntax: ……. Line break: Leave 1 line between the paragraphs Leave NO line between the paragraphs

Q.Nand10 Creating Lists HTML supports 3 kinds of lists: –Ordered list, –Unordered list, –Definition list

Q.Nand11 Ordered list Ordered list is a list in numeric order. It can be: –Numerical: 1, 2, 3,4… (Default) –Alphabetical: a, b, c, d,…. Syntax:

Q.Nand12 Unordered list Unordered list is a list items have no particular order. So it will display as bullet points. Syntax:

Q.Nand13 Definition list Definition list is a list of terms, each followed by a definition line, usually indented slightly to the right. Syntax:

Q.Nand14 Creating Character Tags : display as bold. : display as Italic : display as subscript. : display as superscript. Note: all this code need to open and close tag. ….

Q.Nand15 Special Characters

Q.Nand16 Quiz 1.Why should you include the tag in your Web document? 2.Describe the syntax for creating a centred heading 1. 3.Describe the syntax for creating a paragraph. 4.Describe the syntax for creating an ordered list, an unordered list, and a definition list.

Q.Nand17 Quiz Answers 1. tag identifies the language that support more than one kind of generalized markup language. 2. ….. 3. ….. 4.Unordered list: Ordered List: Definition List: …. …..

Q.Nand18 Dictionary HTML syntax Header Tags Paragraph Tags List Tags Ordered list Unordered list Definition list Character Tags.

Q.Nand19 P. Carey, New Perspectives Creating Web Pages with HTML – Comprehensive, 2 nd Ed, Course Technology of Thomson Learning. ed.htmlhttp:// ed.html