Web Application Development CS-EC 486T

Slides:



Advertisements
Similar presentations
Web Development & Design Foundations with HTML5
Advertisements

HTML popo.
HTML FORMATTING. CONTENTS HTML Formatting Formatting Example Formatting Example Output Summary Exercise.
Introduction to Web Site Development Steven Emory Department of Computer Science California State University, Los Angeles Lecture 2: More HTML.
SSome HTML tags allow you to specify a variety of options, or attributes, along with the basic tag itself. For example, when you begin a paragraph with.
Session: 3. © Aptech Ltd. 2Formatting Text using Tags / Session 3  Explain the Heading tag  Explain the different tags related to formatting  Explain.
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......
1 Introduction to HTML: Part 1 Outline Introduction Elements and Attributes Editing HTML Common Elements Headers Images Unordered Lists Nested and Ordered.
HTML (continued). Assignment 3 Creating a web page with:  Images  Hyperlinks to some websites  Hyperlinks to your  Information about a company,
Index Here type your information or document that you want to look on the Web page.
HTML.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
HTML HyperText Markup Language ©Richard L. Goldman July 15, 2003.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 2- part 2 Key Concepts 1 Copyright © Terry Felke-Morris.
Basic Webpage Design Formatting 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.
Week-11 (Lecture-1) Introduction to HTML programming: A web based markup language for web. Ex.
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 Programming
Lab 3 Html basics.
More HTML Tags CS 1150 Spring 2017.
Introduction to HTML:.
CGS 3066: Lecture 2 Web Development and HTML5
Web Development Part 1.
BHS Web Design Mr. Campbell
Web Development & Design Foundations with HTML5 8th Edition
LAB Work 01 MBA 61062: E-Commerce
More HTML Tags CS 1150 Fall 2016.
HTML Programming Language
Web Development & Design Foundations with HTML5 8th Edition
HTML: HyperText Markup Language
Creating a Web Page.
Introduction to the Internet
Web Development & Design Foundations with HTML5 7th Edition
HTML Lab 5 10/1/2015.
HTML5 – Heading, Paragraph
Session 5: HTML J 0394 – Perancangan Situs Web Program Studi Manajemen
HTML Formatting.
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
Lists in HTML PowerPoint How to create lists in HTML
Text Elements.
Chapter 1: Introduction to XHTML (part 1)
HTML Lists CS 1150 Fall 2016.
Chapter 6 Lists.
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
HTML BASICS Test page Internet Programming This is a sample web page in testing HTML commands
Introduction to the Internet
Internet & Web Engineering Course Code:CS-228 Credit Hours (3+1) Lab 1 Introduction to Markup Language HTML Instructor: Muhammad Zeeshan Haider.
Tag Basics.
HTML (HyperText Markup Language)
Programming for webpages
Text Elements.
HTML Intro.
Client-Side Internet and Web Programming
Text Elements.
CGS 3066: Lecture 2 Web Development and HTML5
Introduction to HTML- Basics
HTML Lists CS 1150 Spring 2017.
Formatted Lists Unordered Lists Usage of Unordered List Ordered Lists
This is HTML rather than XHTML.
Html.
Lecture 7 Introduction to Web Programming
Text Elements.
COMS 161 Introduction to Computing
Text Elements.
CGS 3066: Web Programming and Design Fall 2019
Presentation transcript:

Web Application Development CS-EC 486T Second Lab

HTML Text Formatting

HTML Text Formatting <b> - Bold text Output This text is normal. This text is bold. <b> - Bold text <p>This text is normal.</p>   <p><b>This text is bold.</b></p>

HTML Text Formatting <strong>- Important text Output This text is normal. This text is important <strong>- Important text <p>This text is normal.</p>   <p><strong>This text is important.</strong></p>

HTML Text Formatting <i>- Italic text Output This text is normal. This text is italic <i>- Italic text <p>This text is normal.</p>   <p><i>This text is italic</i></p>

HTML Text Formatting <em>- emphasized text Output This text is normal. This text is emphasized <em>- emphasized text <p>This text is normal.</p>   <p><em>This text is emphasized</em></p>

HTML Text Formatting <mark>- Marked text Output This text is normal. This text is marked <mark>- Marked text <p>This text is normal.</p>   <p><mark>This text is marked</mark></p>

HTML Text Formatting <small>- Small text Output This text is normal.   This text is small <small>- Small text   <p>This text is normal.</p> <p><small>This text is small</small></p>

HTML Text Formatting <del>- deleted text Output This text is normal. This text is deleted   <del>- deleted text <p>This text is normal.</p>   <p><del>This text is deleted</del></p>

HTML Text Formatting <ins>- inserted text Output This text is normal. This text is inserted   <ins>- inserted text   <p>This text is normal.</p> <p><ins>This text is inserted</ins></p>

HTML Text Formatting <sub>- subscript text Output This text is normal. This text is subscript   <sub>- subscript text <p>This text is normal.</p>   <p><sub>This text is subscript</sub></p>

HTML Text Formatting <sup>- superscript text Output This text is normal. This text is superscript   <sup>- superscript text <p>This text is normal.</p>   <p><sup>This text is superscript</sup></p>

Evaluation1 Write your full name. Use HTML formatting to write your full name in the Five format in the box below Your Name

Evaluation1 What is the mistake in the code? Required output Your Name <b>Your Name   <mark>Your Name <ins>Your Name <del>Your Name <small>Your Name The code output Your Name Your Name Your Name Your Name Your Name

Evaluation1 What is the mistake in the code? Required output Your Name <b>Your Name </b>   <mark>Your Name </mark> <ins>Your Name </ins> <del>Your Name </del> <small>Your Name </small> The code output Your Name Your Name Your Name Your Name Your Name

HTML Headings This is heding1. This is heding2. This is heding3. Output <h1> to <h6> - <h1> defines the most important heading. <h6> defines the least important heading This is heding1. This is heding2. This is heding3. <h1>This is heding1.</h1>  <h2>This is heding2.</h2> <h3>This is heding3.</h3>

HTML List <ul> - Unordered List Output item1 item2 item3 item4 <li>item1</li> <li>item2</li> <li>item3</li> <li>item4</li> </ul>

Search for more list types and try them HTML List Output <ul> - Unordered List item1 item2 item3 item4 List-style-type description Disk The default: sets the list item marker to a bullet Square Sets the list item marker to a square <ul style="list-style-type:square;">  <li>item1</li> <li>item2</li> <li>item3</li> <li>item4</li> </ul> Search for more list types and try them

HTML List <ol> - ordered List Output item1 item2 item3 item4 <li>item1</li> <li>item2</li> <li>item3</li> <li>item4</li> </ol>

Search for more list types and try them HTML List Output <ol> - ordered List item1 item2 item3 item4 type description Type="1" The default: the list items will be numbered with numbers Type="a" The list items will be numbered with lowercase letters Search for more list types and try them <ol type="a">  <li>item1</li> <li>item2</li> <li>item3</li> <li>item4</li> </ol>

Evaluation2 Use HTML to write the page below

Self Study Search for more HTML tags and try them on your own