HTML FORMATTING. CONTENTS HTML Formatting Formatting Example Formatting Example Output Summary Exercise.

Slides:



Advertisements
Similar presentations
HTML Tutorial Fan Zhang. About me Fan Zhang ROOM6150 OFFICE HOUR(TBD)
Advertisements

HTML popo.
Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
Creating a Web Page HTML: The Language of the WEB.
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
1 Formatting: Is What You See What You Get? Inline Styles Physical Styles Logical Styles Special Characters Turning of Formatting Deprecated Font-Handling.
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.
MORE HTML REMEMBER TO SEARCH W3 SCHOOLS FOR MORE INFO.
Define html document byusing Example : Title of the document The content of the document......
Headings, Paragraphs, Formatting, Links, Head, CSS, Images
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
HTML Introduction to HTML Tags. HTML Document My first HTML document Hello world!
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 2.
Introduction to HTML. HTML Hyper Text Markup Language Page Title My First Heading My first paragraph. Page Title My First Heading My first paragraph.
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,
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.
HTML Basic IST2101. Keep In Mind Programming can be time consuming. Plan ahead!
HTML and Web Pages. HTML?  HTML is not a programming language  A type of SGML (standard generalized markup language)  HTML uses paired tags to markup.
Creating Effective Presentations in PowerPoint Pamela Conway – Dir. Business Development CompuWorks Systems, Inc.
Learning HTML involves... Learning how these elements are used Learning a list of elements.
CPT 499 Internet Skills for Educators Session Ten Class Notes.
Index Here type your information or document that you want to look on the Web page.
CS 111 – Oct. 4 Web design –HTML –Javascript Commitment: –This week, read sections 4.3 – 4.5.
IDK0040 Võrgurakendused I harjutus 02: Formatting Deniss Kumlander.
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.
Getting Started with Marking Up Page Content. Tag defines a paragraph Automatically creates some space before and after itself Code Browser Display.
INTRODUCTION TO HTML ENGL 307 March 28 th, Hyper Text Markup Language What is HTML?
Formatting Tags. HTML Page Structure Demo Page Aloha, this is a demo page.
Bus119A Web Page Design John Wang, Diana Chou and Greg Windt Presented By.
HTML JAVASCRIPT. CONTENTS Javascript Example NOSCRIPT Tag Advantages Summary Exercise.
Basic (X)HTML Formatting.  There are number of formatting elements:- Font Size Colour etc.
Review Questions 1. What is another word for type? 2. What is a style of writing? 3. How many times do you space after a colon? 4. Which key capitalizes.
Web programming Part 1: HTML 由 NordriDesign 提供
HTML BASIC IST 210: Organization of Data IST210 1.
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.
Hypertext Markup Language.  Developed by Tim Berners-Lee in 1990  Stands for HyperText Markup Languange  A format that tells a computer how to display.
Web Technology (NCS-504) Prepared By Mr. Abhishek Kesharwani Assistant Professor,UCER Naini,Allahabad.
CS 100 Introduction to Web Page Construction and HTML.
HTML: Hypertext Markup Language The language to make web pages 0.
Basic Webpage Design Formatting tags.
HTML. HTML: What is it? – HTML stands for Hyper Text Markup Language – An HTML file is a text file containing small markup tags – The markup tags tell.
HTML Basic Structure. Page Title My First Heading My first paragraph.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
HTML Basic IST 210: Organization of Data IST2101.
Microsoft Word (a word processing application). Customize your quick access toolbar with tools you use often.
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.
02 | Build the User Interface Christopher Harrison | Content Developer, Microsoft Rachel Jones| Microsoft Certified Trainer, SourceDev.
Basic HTML5 Elements CPSC Spacing Adjacent spaces, tabs, newlines in the input reduce to a single space in the output The following will not display.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
More HTML Tags CS 1150 Spring 2017.
Web Development Part 1.
HOME RIBBON GROUPS WORD 2007 COMPUTER APPLICATIONS IN BUSINESS
More HTML Tags CS 1150 Fall 2016.
Introduction to computers
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
HTML Formatting.
Tag Basics.
HTML Intro.
(HTML tags can be referred from
What is HTML? Structure of HTML Document HTML TAG HEAD TAG TITLE TAG
Microsoft Word 2013 Part II.
What is HTML?.
Lesson 3: Formatting Text
Click to add your text.
Getting Started with Marking Up Page Content
Web Application Development CS-EC 486T
Presentation transcript:

HTML FORMATTING

CONTENTS HTML Formatting Formatting Example Formatting Example Output Summary Exercise

HTML FORMATTING HTML uses tags like and for formatting output, like bold or italic text. These HTML tags are called formatting tags Often renders as, and renders as.

FORMATTING EXAMPLE Example This text is bold This text is strong This text is italic This text is emphasized This is computer output This is subscript and superscript

EXAMPLE OUTPUT This text is bold This text is strong This text is italic This text is emphasized This is computer output This is subscript and superscript

SUMMARY tag is used make the content bold. tag is used make the content italic. tag is used make the content highlight. tag is used make the content subscript. tag is used make the content superscript.

EXERCISE Why tag is used?

THANK YOU