HTML Tag Format <tagname parameter="value" parameter2="value">content</tagname> <div class="headline">Tiger Loose in City!</div> <p>Hello</p> <img src="pic.jpg">

Slides:



Advertisements
Similar presentations
Introduction to Web Design XHTML. The Basics Elements and Tags are the basics of any webpage.
Advertisements

XHTML Week Two Web Design. 2 What is XHTML? XHTML is the current standard for HTML Newest generation of HTML (post-HTML 4) but has many new features which.
WeB application development
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
Understand Web Page Development Software Development Fundamentals LESSON 4.1.
 Pseudo-elements  Centering  Tables  Classes and ids.
 CSS ids  Pages  Sites  HTML: class=“name”  Names may define format OR content › Either works  CAN apply multiple classes to the same tag  Multiple.
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 FORMATTING. CONTENTS HTML Formatting Formatting Example Formatting Example Output Summary Exercise.
HTMLMR.Mostafa badr1. Lesson 3 HTML Tags Lesson 2 Creating a HTML File Lesson 1: Hyper Text Markup Language (HTML) Basics Get Trained for a Better Future.
Basics of HTML.
HTML. What is HTML?  HTML is a language for creating web pages.  HTML stands for Hyper Text Markup Language  A markup language has tags which are codes.
Introduction to HTML. HTML Hyper-Text Markup Language: the foundation of the World-Wide Web Design goals:  Platform independence: pages can be viewed.
HTML INTRODUCTION, EDITORS, BASIC, ELEMENTS, ATTRIBUTES.
HTML Hyper-Text Markup Language or tags. HTML is a “tag” language Open and close tags Tags identified with angle brackets Basic format content (shorthand.
HTML 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
1. Short History Of HTML HTML was invented in 1990 by a scientist called Tim Berners-Lee. The purpose was to make it easier for scientists at different.
Introduction to HTML. What is HTML? Hyper Text Markup Language (HTML) is a language for describing web pages. HTML is not a programming language, it is.
HTML Codes Miss B.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
UNDERSTANDING HTML Tags VS Attributes. Element An element in HTML represents some kind of structure and generally consists of a start tag, content, and.
1 An Introduction to Dreamweaver and PHP Part B: Some introductory PHP and JavaScript.
Getting Started with HTML. HTML  Hyper Text Markup Language  HTML isn’t a program language, its known as a markup language  A Markup language has tags.
Elements and Attributes. XHTML Elements The element contains special information that does not necessarily show up on the web page. The element determines.
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.
HTML is the language that allows text and graphics to be displayed as Web pages. It is a set of special codes, called tags, that tells a browser application.
NOTEPAD++ Lab 1 1 Riham ALSmari. Why Notepad++ ?  Syntax highlighting  Tabbed document interface  Zooming  Indentation code  Find and replace over.
HTML LAYOUTS. CONTENTS Layouts Example Layout Using Element Example Using Table Example Output Summary Exercise.
Hypertext Markup Language.  A markup language use for creating web pages  It is an instruction to a webpage on how it will look Prepared by: Mark Wilson.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
Basic HTML Introduction to HTML.
Basic concepts of web design
Pertemuan 1 Desain web Pertemuan 1
HTML Extra Markup CS 1150 Spring 2017.
Fall 2016 CSULA Saloni Chacha
HTML Basics.
HTML basics
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
HTML.
Coding, Testing and Valdating a Web Page
Display Property.
Introduction to Web programming
Intro to Web Development Class A Review
Elements and Attributes
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
WEBSITE DESIGN Chp 1
Introduction to Web programming
10 Minute University Richard Fisher
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Putting it all together
XML.
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Basics of XHTML What Lies Beneath.
Limits of Functions.
Intro to Web Development HTML Structure
What is HTML?.
HTML Basics Web.
HTML Structure.
HTML What is Html? HTML stands for Hypertext Markup Language.
Html.
Web Application Development
Building a website: Putting it all together
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
HTML Basics Mr. Fazzalari.
Lesson 2 — HTML Organization Techniques
Lesson 2: HTML5 Coding.
WJEC GCSE Computer Science
selector {style-name:value units;} </style>
Presentation transcript:

HTML Tag Format <tagname parameter="value" parameter2="value">content</tagname> <div class="headline">Tiger Loose in City!</div> <p>Hello</p> <img src="pic.jpg"> <!-- this is a comment… this tag ends itself so does the next one --> <br /> <!-- the below tag has a parameter with no value – this is okay in HTML 5 --> <select multiple><option>blue</option><option>grey</option></select> HTML tags have a start tag and an end tag each between two angle brackets. The content goes between. The end tag is the same but has a forward slash / in front. The end tag is not needed if there is no content. Parameters are put in the start tag to give more information about the tag – the quotes are optional for one word values. Some parameters have no value.