Bold and Italics. Bold and Italics in XHTML 1. Via CSS, using the "font-weight:bold" and "font-style:italic" styles. 2. By using the and ("emphasis")

Slides:



Advertisements
Similar presentations
MA foundation Creating webpages using XHTML (part 1) Simon Mahony CCH
Advertisements

Web Development & Design Foundations with HTML5
Web Development & Design Foundations with XHTML
1. Content – Collective term for all text, images, videos, etc. that you want to deliver to your audience. 2. Structure – How the content is placed on.
Technologies for web publishing Ing. Vaclav Freylich Lecture 1.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
Web-based Application Development Lecture 4 January 19, 2005 Anita Raja.
XHTML 16-Apr-17.
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;
17-Jun-15 XHTML 2 What is XHTML? XHTML stands for Extensible Hypertext Markup Language XHTML is aimed to replace HTML.
Web-based Application Development Lecture 5 January 24, 2006 Anita Raja.
Stylin’ with CSS. 2 Topics What is CSS? Why CSS? CSS Examples.
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
Define html document byusing Example : Title of the document The content of the document......
Creating a Basic Web Page
Cascading Style Sheets. Defines the presentation of one or more web pages Similar to a template Can control the appearance of an entire web site giving.
Learning HTML. HTML Attributes HTML elements can have attributes Attributes provide additional information about an element Class – specifies a class.
ACM 511 HTML Week -1 ACM 511 Course Notes. Books ACM 511 Course Notes.
CS134 Web Design & Development Creating a Basic Web Page Mehmud Abliz.
1 HTML intro The development of HTMLThe development of HTML The transition from HTML to XHTMLThe transition from HTML to XHTML XHTML syntax, tags, and.
Reading & Exam Zeid: Chapter 9: XHTML Essential p Read before EXAM 1 Exam is Monday Oct. 25 th Review on Friday Oct. 22 nd.
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 Web Developer Foundations: Using XHTML Chapter 2 Key Concepts.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
Using Cascading Style Sheet As you create more web pages, you may wish to impose a consistent look for all of your web pages or for group of related pages.
CASCADING STYLE SHEETS. Chapter 3 Objectives Customize HTML elements Specify Font characteristics Classes Tag style Inline and block-level elements External.
A Basic Web Page. Chapter 2 Objectives HTML tags and elements Create a simple Web Page XHTML Line breaks and Paragraph divisions Basic HTML elements.
HTML: Hyptertext Markup Language Doman’s Sections.
XHTML TAGS I Basic Tags. North Lake College 2 by Sean Griffin Sample XHTML Code.
Web Development & Design Foundations with XHTML Chapter 2 HTML/XHTML Basics.
HTML – Organizing Page Content. HTML Images img tag Required attribute: src
1 Web Application Programming Presented by: Mehwish Shafiq.
HTML – Organizing Page Content. HTML Images img tag Required attribute: src
Web Design. How do web pages work? Webpages are written in a code called HTML. Programs like Internet Explorer read the code, and then show it as a web.
HTML.
Cascading Style Sheets
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 & CSS BasicsHTMLCSSQuizAnswers  The logo In this website(made of html and css Codes), you will learn some basics of How to use HTML and CSS codes.
Introduction to CSS. What is CSS? CSS ("Cascading Style Sheets") determines how the elements in our XHTML documents are displayed and formatted. By using.
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.
University of South Asia Course Name: Web Application Prepared By: Md Rezaul Huda Reza
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Bold and Italics. Bold and Italic Text in XHTML: We can italicize and bold text in CSS by using the "font-style:italic" and "font-weight:bold" styles.
CSCE Chapter 3 (Cascading Style Sheets) CSCE General Applications Programming Benito Mendoza 1 By Benito Mendoza Department of Computer.
Formatting with Styles. Choosing a Font Family font-family property has a special characteristics: you can specify more than one font h1, h2 {font-family:”Arial.
CIS 228 The Internet Day 1, 8/30. The Course Instructor: Bowen Alpern ● Office hour: 4-5pm Tu (and by appointment)
Lesson 5. XHTML Tags, Attributes and Structure XHTML Basic Structure head and body titles Paragraph headings comments Document Presentation Manipulating.
Test1 Here some text. Text 2 More text.
Basic HTML Introduction to HTML.
Web Development & Design Foundations with HTML5 7th Edition
WEBSITE DESIGN Chp 1
PAGE LAYOUT - 1.  Most HTML elements are defined as block level elements or inline elements.  Block level elements normally start (and end) with a new.
Bold and Italics.
Stylin’ with CSS.
[type text here] [type text here] [type text here] [type text here]
Your text here Your text here Your text here Your text here Your text here Pooky.Pandas.
Your text here Your text here Your text here Your text here
HTML Formatting Text.
This is HTML rather than XHTML.
Lesson 3: Formatting Text
[type text here] [type text here] [type text here] [type text here]
Bold and Italics.
Bold and Italics.
Stylin’ with CSS.
Bold and Italics.
Bold and Italics.
Stylin’ with CSS.
Getting Started with Marking Up Page Content
Bold and Italics.
Presentation transcript:

Bold and Italics

Bold and Italics in XHTML 1. Via CSS, using the "font-weight:bold" and "font-style:italic" styles. 2. By using the and ("emphasis") elements. 3. By using the ("bold") and ("italics") elements. Strictly speaking, there are three different ways to bold or italicize text in XHTML: Do not use or in your XHTML documents. These are older elements that have been redefined in the newer HTML5 specification. They are mentioned here so that you will recognize them in older web pages.

The and Elements is generally used only when the enclosed text has a special meaning and should stand out on the page. One example would be a technical keyword. Normal text Text in Bold Text in Italics Text in Bold and Italics We will use only CSS to bold and italicize text in this course. We won't see or any further. is generally used only when the enclosed text has a special, emphasized meaning that would be spoken with a different voice inflection.

Bold and Italics via CSS CSS is the preferred method of bolding and italicizing text on the page. Normal text Text in Bold Text in Italics Text in Bold and Italics