HTML <tag> Syntax

Slides:



Advertisements
Similar presentations
HTML and CSS. HTML Hyper Text Markup Language Tells browser how to display text and images.
Advertisements

This is a Positively Perfect Poster Title And this is an excellent bit of subtext, which could be used for any number of things, such as summaries, author.
HTML. The World Wide Web Protocols Addresses HTML.
HTML Minute University Richard Fisher 10/1/2001 HTML FSA Training2 HTML Overview  HTML  HyperText Markup Language.
Today’s Goals What is HTML?
HTML Introduction (cont.) 10/01/ Lecture 8, MAT 279, Fall 2009.
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
HTML syntax By Ana Drinceanu. Definition: Syntax refers to the spelling and grammar of a programming language. Computers are inflexible machines that.
HTML FORMATTING. CONTENTS HTML Formatting Formatting Example Formatting Example Output Summary Exercise.
Define html document byusing Example : Title of the document The content of the document......
HTML Tags Basic Tags Doctype or HTML Head Title Body Use the website to find the definitions
Project name: HTML5 Essential Training Date: 4 /17/ 2014 Screen ID: 001 Media information Navigation info Screen 1 of 24 Notes: When this slide ends the.
I NTRO TO CSS IAT100 Spring I NTRO TO CSS Covered in this lesson: Overview What is CSS? Why to use CSS? CSS for Skinning your Website Structure.
OBJECTIVES  What is HTML  What tools are needed  Creating a Web drive on campus (done only once)  HTML file layout  Some HTML tags  Creating and.
HTML and XML Behind Web Authoring Tools. 2 Objectives Introduce HTML Learn HTML Step by step Introduce XML.
By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects.
HTML I An Introduction to the Language of the Web Terry Bake
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
My Homepage Welcome to my Homepage! SPOT THE BUG No closing title tag.
Dynamic Web Pages & JavaScript. Dynamic Web Pages Dynamic = Change Dynamic Web Pages are web pages that change. More than just moving graphics around.
Welcome to Creative Web Design You will soon be creating your first web page.
Welcome to Creative Web Design You will soon be creating your first web page.
CPSC 203 Introduction to Computers Lab 33 By Jie Gao.
HTML Basics Let’s Make a Web Page. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a.
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.
CPSC 203 Introduction to Computers Lab 66 By Jie Gao.
Louisa Lambregts, Louisa Lambregts
HTML Tags Lesson 2. What are HTML Tags?  Markup tags  Coded instructions that accompany the plain text of an HTML document  Syntax –Left wicket< –Tag.
Quick Questions 1. What does HTML stand for? 2. What are the three main languages of the Web? 3. What is the purpose of the tags? 4. Why do we indent different.
DYNAMIC HTML What is Dynamic HTML: HTML code that allow you to change/ specify the style of your web pages. Example: specify style sheet, object model.
The basic HTML School Net Japan Naoto Kurimoto. Today’s Goal Understanding the basic structure of HTML How to use basic HTML tag,,,,,,, etc… Making the.
Presented by the Monroe County Public Library. Me: Austin Stroud, Instructional Designer at the Monroe County Public Library Adjunct Faculty, Ivy Tech.
Cascading Style Sheets (CSS) EXPLORING COMPUTER SCIENCE – LESSON 3-5.
Creating a Web Page Presented by: Bernadette G. Bautista Manuel I. Santos MNHS April 29, 2011.
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
Behind every site is a mix of special languages that your web browser understands The main way of describing any website is HTML HTML stands for Hyper.
Step 1: Starting an HTML Document: Right Click: new>text document.
Basic Steps to create a Website using HTML5. Hypertext Markup Language.
HTML Basic Structure. Page Title My First Heading My first paragraph.
This is a Positively Perfect Poster Title And this is an excellent bit of subtext, which could be used for any number of things, such as summaries, author.
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.
This is a dummy text. Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Sepa-rated.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
CSS Cascading Style Sheets. Session Checklist ► Learn why style sheets are needed and their advantages and disadvantages ► Learn the format of a style.
ITE Hirakjyoti Nath Class 7
What you can see in the picture?
Cascading Style Sheets (CSS)
Web Basics: HTML/CSS/JavaScript What are they?
Key concepts of Computing
WITH A TEMPLATE LIKE THIS
LINKS.
Chapter 1 HTML, XHTML, and the World Wide Web
زبان بدن Body Language.
Chapter 1 HTML, XHTML, and the World Wide Web
مهارات الاتصال والتواصل Communication Skills
مهارات الاتصال والتواصل Communication Skills
HTML HYPERTEXT MARKUP LANGUAGE.
School Shop.
SABEE PRESENTATION.
Making Web pages.
style=“property : value;”
Web pages Lesson 3.
What is HTML?.
POWERPOINT.
HTML Basic Structure.
SLIDER CREATIVE DESIGN POWERPOINT.
The language of the internet
Session 3: Basic CSS Spring 2009
The language of the internet
LANGUAGE EDUCATION.
Presentation transcript:

HTML <tag> Syntax </ > Tag Name Content End Tag Name Example < h1 > Welcome to my site < /h1 >

HTML <tag> Syntax Examples < li > content < /li > < h1 > content < /h1 > < p > content < /p >

HTML <tag> Syntax Examples < name of tag > content < /end tag >

HTML <tag> Syntax Examples < h1 > Welcome to my Site < /h1 > <p> Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. </p>

HTML <tag> Syntax All content resides within the <body> tags <body> < h1 > Welcome to my Site < /h1 > <p> Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. </p> </body>