Define html document byusing Example : Title of the document The content of the document......

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.
CREATED BY : VIRAL M.KORADIYA. Anchor elements are defined by the element. The element accepts several attributes, but either the Name or HREF attribute.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
1 Lesson 5. 2 R3 R1 R5 R4 R6 R2 B B A A
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
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.
Please let me know whether or not you have used Elluminate before by clicking the Green Check above your names for “Yes” and a Red X for “No.” Thanks!
HTML FORMATTING. CONTENTS HTML Formatting Formatting Example Formatting Example Output Summary Exercise.
Introduction to HTML academy.zariba.com 1. Lecture Content 1.What is HTML? 2.The HTML Tag 3.Most popular HTML tags 2.
HTML. We’ll learn … What HTML is What tags are What a basic web page looks like What 3 HTML tags are required What HTML comments look like How to title.
HTML Overview Part 2 – Paragraphs, Headings, and Lines 1.
MORE HTML REMEMBER TO SEARCH W3 SCHOOLS FOR MORE INFO.
What is HTML? HTML is a language for describing web pages. –HTML stands for Hyper Text Markup Language –HTML is a markup language –A markup language is.
Headings, Paragraphs, Formatting, Links, Head, CSS, Images
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
HTML Tags Basic Tags Doctype or HTML Head Title Body Use the website to find the definitions
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
HTML Basic I IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
HTML (continued). Assignment 3 Creating a web page with:  Images  Hyperlinks to some websites  Hyperlinks to your  Information about a company,
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
HTML Hyper Text Markup Language. What is an HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup.
Hypertext Mark-Up Language Web Page Creation HTML.
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,
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
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.
INT222 - Internet Fundamentals Shi, Yue (Sunny) Office: T2095 SENECA COLLEGE.
LEARNING HTML PowerPoint #1 Cyrus Saadat, Webmaster.
CPT 499 Internet Skills for Educators Session Ten Class Notes.
1 Web Application Programming Presented by: Mehwish Shafiq.
Styling in HTML PowerPoint How to style in HTML. Styling in HTML Styling tags can be added to HTML to place emphasis or add appeal – These tags must be.
L. Anne Spencer (c) 2001 Basic Web Design Document, text, & layout formatting tags & attributes.
CS 111 – Oct. 4 Web design –HTML –Javascript Commitment: –This week, read sections 4.3 – 4.5.
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. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place.
HTML Basic. 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.
HTML Hyper Text Markup Language 1BFCET BATHINDA. Definitions Web server: a system on the internet containing one or more web site Web site: a collection.
Web programming Part 1: HTML 由 NordriDesign 提供
Headings are defined with the to tags. defines the largest heading. defines the smallest heading. Note: Browsers automatically add an empty line before.
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.
Text Building a Website Lesson 3. Headings,,,,, Headings,,,,, HTML has 6 levels of headings,,,,,,,,,, is used for main headings is used for main headings.
Web Technology (NCS-504) Prepared By Mr. Abhishek Kesharwani Assistant Professor,UCER Naini,Allahabad.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
CS 100 Introduction to Web Page Construction and HTML.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
Basic Steps to create a Website using HTML5. Hypertext Markup Language.
HTML Basic Structure. Page Title My First Heading My first paragraph.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
HTML ELEMENTS THE SUPER BASICS. OPENING AND CLOSING If a tag is opened Then the tag must be closed.
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.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
HTML Headers/Parag raphs. How to make a heading  Page Title This is a Heading This is a paragraph.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
Web Basics: HTML/CSS/JavaScript What are they?
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
INTRODUCTION TO HTML AND CSS
HTML Robert McIntosh
Tag Basics.
HTML.
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
INTRODUCTION TO HTML AND CSS
HTML Formatting Text.
HTML Basic Structure.
Getting Started with Marking Up Page Content
Presentation transcript:

Define html document byusing Example : Title of the document The content of the document

To put the Description of website such as title,scripts, styles, meta information, and more. Title of the document

Is website content content

HTML headings are defined with the to tags. This is a heading

HTML paragraphs are defined with the tag. This is a paragraph

HTML links are defined with the tag. This is a link

HTML images are defined with the tag.

The tag creates a horizontal line in an HTML page. The hr element can be used to separate content: This is a paragraph. This is a paragraph. This is a paragraph.

Comment or note in html document

Use the tag if you want a line break (a new line) without starting a new paragraph: This is a para graph with line breaks

Bold This text is bold italic This text is italic subscript / superscript This is subscript and superscript