Getting Started with Marking Up Page Content

Slides:



Advertisements
Similar presentations
HTML popo.
Advertisements

Internet Services and Web Authoring (CSET 226) Lecture # 5 HyperText Markup Language (HTML) 1.
HTML Overview - Text Markups. Before We Begin Make a copy of your HTML file you created in the previous lesson Make a copy of your HTML file you created.
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.
1 Outline 9.1Introduction 9.2Markup Languages 9.3Editing HTML 9.4Common Tags 9.5Headers 9.6Text Styling 9.7Linking 9.8Images 9.9Formatting Text With 9.10Special.
HTML BASIC
HTML: PART ONE. Creating an HTML Document  It is a good idea to plan out a web page before you start coding  Draw a planning sketch or create a sample.
Web page - A Web page is a simple text file that contains HTML tags (code) that describe what should be displayed on the browser. -The Web browser interprets.
HTML Overview Part 2 – Paragraphs, Headings, and Lines 1.
Define html document byusing Example : Title of the document The content of the document......
DAT602 Database Application Development Lecture 14 HTML.
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
>> 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 Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
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.
INTRODUCTORY Tutorial 1 Using HTML Tags to Create Web Pages.
Introduction to HTML Wah Yan College (Hong Kong) Mr. Li C.P.
HTML – Organizing Page Content. HTML Images img tag Required attribute: src
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.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
HTML – Organizing Page Content. HTML Images img tag Required attribute: src
IDK0040 Võrgurakendused I harjutus 01: Introduction Deniss Kumlander.
L. Anne Spencer (c) 2001 Basic Web Design Document, text, & layout formatting tags & attributes.
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.
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.
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.
Web Development Lecture # 09 Text Formatting in HTML.
Week 2: Building a Simple Website IMC 320 Web Publishing Spring 2011.
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.
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 is a markup.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
HTML: Hypertext Markup Language The language to make web pages 0.
XP 2 HTML Tutorial 1: Developing a Basic Web Page.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
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 Introduction. Lecture 7 What we will cover…  Understanding the first html code…  Tags o two-sided tags o one-sided tags  Block level elements.
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
Introduction to HTML.
More HTML Tags CS 1150 Spring 2017.
HTML Basics.
LAB Work 01 MBA 61062: E-Commerce
More HTML Tags CS 1150 Fall 2016.
Essential Tags Web Design – Sec 3-3
HTML Programming Basic HTML text formatting.
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
Elements of HTML Web Design – Sec 3-2
Web Development & Design Foundations with HTML5 7th Edition
HTML5 – Heading, Paragraph
Essential Tags Web Design – Sec 3-3
Elements of HTML Web Design – Sec 3-2
HTML Robert McIntosh
HTML Vocabulary.
Tag Basics.
HTML.
HTML Intro.
Computers and Scientific Thinking David Reed, Creighton University
HTML Formatting Text.
The Most Basic HTML Page
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

Getting Started with Marking Up Page Content Simple Tags < > you’re it

<p> Tag <p> defines a paragraph Automatically creates some space before and after itself Code Browser Display

<h1> - <h6> Tags Define headings <h1> is Most important <h6> is Least important Browser Display Code

<br /> Tag Inserts a single line break Empty tag – it has no end tag Use to enter blank lines, NOT to separate paragraphs Code Browser Display

<hr /> Tag Creates horizontal rule (line) AND Defines a separation of content (change) – a thematic break Empty tag - – it has no end tag Browser Display Code

<b> Tag Originally “b” short for “Bold” Default: makes text look bold Makes text have different style from the rest without meaning “extra important” Code Browser Display

<strong> Tag Default: makes text look bold Makes text have extra importance relative to content around it Additional <strong> tags show more importance Code Browser Display

<i> Tag Default: renders text in italics Represents text in different voice or mood from rest of text Code Browser Display

<em> Tag Default: renders text in italics Simple way to emphasize text (stress emphasis – something you’d pronounce differently) Code Browser Display

When to Use Which? <i> <b> <em> <strong> Words in different language Technical terms Taxonomic designations Typographically italicized text <b> Keywords Lead sentence in an article Typographically bold words <em> Stress Emphasis Something you’d pronounce differently <strong> Strong Importance Puts contents in hierarchy – assigns it a level of importance

Attributes Provide additional info about an element Specified in start tag Come in name/value pairs: name=“value” Attribute lang – short for language es – language code for Spanish Code Browser Display

 Right! Wrong! Nesting Tags must be nested correctly Should be closed out in reverse order.. First opened…Last closed Right!  Wrong!

HTML Comments Used to make notes to yourself (or to other web developers) Will be visible in HTML, but NOT in the page displayed by the browser <!-- This symbol starts my comment And I can keep typing on multiple lines Until I close off the tag like this -->