MORE HTML REMEMBER TO SEARCH W3 SCHOOLS FOR MORE INFO.

Slides:



Advertisements
Similar presentations
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.
Advertisements

Web Development & Design Foundations with HTML5
Table, List, Blocks, Inline Style
HTML popo.
HyperText Markup Language (HTML). Introduction to HTML Hyper Text Markup Language HTML Example The structure of an HTML document Agenda.
1 Lesson 5. 2 R3 R1 R5 R4 R6 R2 B B A A
HTML: HyperText Markup Language Hello World Welcome to the world!
HTML / CSS – Basics Why the heck are we doing this?
INTRODUCTION TO HYPERTEXT MARKUP LANGUAGE 1. Outline  Introduction  Markup Languages  Editing HTML  Common Tags  Headers  Text Styling  Linking.
1 Home Tab Font Group 5 6 To change the font shape: 1- select the text you want to change 2- from font type drop down list choose any type.
13 February Building a Web Page. HTML Files Two types of information Text Instructions on how to display Instructions are in the form of tags Tags are.
Introduction to HTML CPS470 Software Engineering Fall 1998.
1 Formatting: Is What You See What You Get? Inline Styles Physical Styles Logical Styles Special Characters Turning of Formatting Deprecated Font-Handling.
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 Tags. Objectives Know the commonly used HTML tags Create a simple webpage using the HTML tags that will be discussed.
BASIC HTML TUTORIAL Amber Brady. HTML tags are keywords surrounded by angle brackets like HTML tags normally come in pairs like and The first tag in a.
HTML Web Programming.
HTML Overview Part 2 – Paragraphs, Headings, and Lines 1.
HTML. 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.
Define html document byusing Example : Title of the document The content of the document......
Headings, Paragraphs, Formatting, Links, Head, CSS, Images
HTML basics exercises.
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.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
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.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 2.
CIS234A Lecture 9 Instructor Greg D’Andrea. Working with Table's Column Groups We've formatted the content of the table columns by modifying the attributes.
1 HTML محمد احمدی نیا 2 Of 43 What is HTML?  HTML stands for Hyper Text Markup Language  HTML is not a programming language, it.
CHAPTER 1 HTML & HTML5 I อ. ยืนยง กันทะเนตร คณะเทคโนโลยีสารสนเทศและการสื่อสาร มหาวิทยาลัยพะเยา 1.
HTML Basic I IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
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.
HTML Basic IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
Introduction to HTML Xiangming Mu 9/23/ Learning Objectives Understand basic HTML tags and their attributes Learn to create a simple HTML page.
HTML— More Tags, Formatting, and Lists. Formatting Tags  Bold  Italics  Underline  Big text  Small text  Subscript (H 2 O)  Superscript (10 3 )
HTML/XHTML Structure Building a basic web page using notepad.
Index Here type your information or document that you want to look on the Web page.
Colors & Fonts Building a Website Lesson 7. Font Font The tag specifies the font face, font size, and color of text. The tag can have any or all of these.
HTML.
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.
CSE 409 – Advanced Internet Technology 1 DISCUSSION OF BASIC HTML TAGS.
Formatting Text with HTML. Objectives: Students will be able to: Define the structure of the document with block elements Format numbered, bulleted, and.
HTML BASIC IST 210: Organization of Data IST210 1.
HTML World Wide Web Consortium What does HTML stand for? – – –
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.
Basic HTML Programming Technology Education Ellsworth Community Middle School Communication Systems.
The Web Wizard’s Guide to HTML Chapter Two Basic Text Formatting.
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
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
Unordered Lists Need to make a list of items that aren't numbered? You need.
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.
HTML Basic IST 210: Organization of Data IST2101.
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.
Basic Webpage Design Formatting output using Unordered List and Ordered List tag.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
Web Development Part 1.
LAB Work 01 MBA 61062: E-Commerce
Presentation Title, Verdana Bold 40pt
Presentation Title, Verdana Bold 40pt
Chapter 6 Lists.
Tag Basics.
Presentation Title, Verdana Bold 40pt
Presentation Title, Verdana Bold 40pt
Web Application Development CS-EC 486T
Presentation transcript:

MORE HTML REMEMBER TO SEARCH W3 SCHOOLS FOR MORE INFO

LIST  HTML can have Unordered Lists, Ordered Lists, or Description Lists: Unordered HTML List The first item The second item The third item The fourth item Ordered HTML List 1.The first item 2.The second item 3.The third item 4.The fourth item HTML Description List The first item Description of item The second item Description of item

EXAMPLES Unordered List  Coffee Tea Milk  Ordered List Coffee Milk

HTML STYLES  Formatting elements are special HTML elements with a special meaning.  Formatting elements were designed to display special types of text, like important text, emphasized text, subscripts, and superscripts.  HTML styling has nothing to do with formatting elements.  Styling is about changing or adding the style of existing HTML elements.  Every HTML element has a default style (background color is white, text color is black...)  Changing the default style of an HTML element, can be done with the style attribute.  style="property:value"

EXAMPLE  body style="background-color:lightgrey"> This is a heading This is a paragraph.

HTML PARAGRAPHS  he HTML element defines a paragraph.  This is a paragraph This is another paragraph

HTML LINE BREAKS  he HTML element defines a line break.  Use if you want a line break (a new line) without starting a new paragraph:  This is a para graph with line breaks

HTML TEXT FORMATTING ELEMENTS  Text Formatting  This text is bold This text is italic This is superscript  HTML Formatting Elements  HTML uses elements like and for formatting output, like bold or italic text.  These elements are called formatting elements.