Mr. Rouda’s CSCI 101 sections

Slides:



Advertisements
Similar presentations
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 8 Key Concepts 1 Copyright © Terry Felke-Morris.
Advertisements

HTML: HyperText Markup Language Hello World Welcome to the world!
HTML Tables, Lists, Blocks, Colors, Styles
Lists and Tables Cool sites Lists unordered, ordered, definition Tables basic.
Learning HTML Week 6. Every Web Page Has the Same Basic Structure The title of your page The guts of the web page, text, graphics, links and so on.
Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently Tables.
INTRODUCTION TO WEB DEVELOPMENT AND HTML Lecture 06: Tables - Spring 2011.
Lesson 6. Links in HTML Computer Science Welcome to Virtual University in Pakistanhttp://
XP 1 Tutorial 4 Designing a Web Page with Tables.
HTML, Third Edition--Illustrated Introductory 1 HTML, Third Edition Illustrated Introductory Unit F Working with Tables.
CITY UNIVERSITY / Vysoká Škola Manažmentu.:IS Information Systems :. © Martina Cesalova, 2005 MS FRONTPAGE 4 1. Create a folder on L/BSBA/IS330/website.
Using FrontPage Express. Slide 1 Standard toolbars and menus Time indicator: gives an approximation of download time of the page.
 HTML stands for Hyper Text Mark-up Language. The coding language used to create documents for the World Wide Web  HTML is composed of tags. HTML tags.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 2.
>> Introduction to HTML: Tables. HTML is used to give websites structure 5 Basic Tags Element = Start-Tag+Content+End-Tag Heading Tags [h1-h6] Paragraph.
HTML | DOM. Objectives  HTML – Hypertext Markup Language  Sematic markup  Common tags/elements  Document Object Model (DOM)  Work on page | HTML.
Going Live with a Basic Web Page Bill Hart-Davidson AIM: billhd30 pfworkshop.
Tutorial 5 Working with Tables and Columns
Web Development & Design Foundations with XHTML Chapter 8 Key Concepts.
Tutorial 5 Working with Tables and Columns
HTML: Hyptertext Markup Language Doman’s Sections.
HTML— More Tags, Formatting, and Lists. Formatting Tags  Bold  Italics  Underline  Big text  Small text  Subscript (H 2 O)  Superscript (10 3 )
CIS234A- Lecture 7 Instructor Greg D’Andrea. Tables A table can be displayed on a Web page either in a text or graphical format. A text table: – contains.
Computer Science 101 Lists and Tables. Lists Unordered lists - use a bullet Ordered lists - use a number, Roman numeral, or letter.
Paper 3 Unit 15 – Web Authoring Software Choices Graphics Exporting Graphics Creating CSS RGB Colour CSS – Body, Table and TD Border Collapse Tables -
Mr. Rouda’s CSCI 101 sections. Web Expression Tutorial New Folder Code View New File.
Introduction to Web Authoring Ellen Cushman our syllabus
Introduction to Web Authoring Ellen Cushman /wra210.htm Class mtg. #2.
Doing TABLES Creating Tables in HTML. Start creating the table by using the Table container tag.
Tables creating a table within a web page. What makes up a table? Columns Rows.
Chapter 4 HTML Tags. HTML is written in something called tags. Tags come in pairs, an opening one and a closing one. The first pair of tags we'll write.
1 R3 R1 R5 R4 R6 R2 B B A A Looking at the Code Under the View menu Select Source.
1 Mansoor Ahmed Bughio. 2 HTML TABLES With HTML you can create tables. Examples Tables This example demonstrates how to create tables in an HTML document.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Introduction to Web Authoring Bill Hart-Davidson AIM: billhd30 Session 2
Week 1: Introduction to HTML and Web Design
Introduction to Web Authoring
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
What is HTML? Acronym for: HyperText Markup Language
Organizing Content with Lists and Tables
Web Development & Design Foundations with HTML5
Week 6 Creating Tables using HTML.
Survey of Computer Science CSCI 110, Spring 2011 Lecture 23 HTML
Elements of HTML Web Design – Sec 3-2
HTML: HyperText Markup Language
Web Development & Design Foundations with HTML5 8th Edition
Getting Started – Table 2
HTML Tables CS 1150 Spring 2017.
Tutorial 5 Working with Tables and Columns
Programming the Web using XHTML and JavaScript
The Web Warrior Guide to Web Design Technologies
Web Engineering Hyperlinks, Tables, Frames Lecture 04
HTML Layout and Sub Meun
H T M L A B E S X P I N D.
Essentials of HTML.
HTML/XML HTML Authoring.
Style Sheet Create a new CSS called Cameras.CSS TD Web Authoring
Essentials of HTML.
Web Design and Development
Creating Tables in a Web Site
Mr. Rouda’s CSCI 101 sections
HTML Tables.
Hyperlinks 1 2.
Single Tags <tagName> Example: <BR>
Web Development & Design Foundations with HTML5
Computer communications
Basic HTML.
HTML Basics Mr. Fazzalari.
Hypertext Markup Language Table 11th Lecture
Web Development & Design Foundations with HTML5
Presentation transcript:

Mr. Rouda’s CSCI 101 sections HTML Lists and Tables Mr. Rouda’s CSCI 101 sections

Web Expression Tutorial New Folder New File Code View

Format of Every Page <html> <head> <title> my page </title> </head> <body> this is the body </body> </html>

Lists Unordered Lists Ordered Lists Definition Lists

Lists - UnOrdered List Example – UnOrdered - 1 Here is a list of days. <ul> <li> monday </li> <li> tuesday </li> <li> wednesday </li> </ul> That is the end of the list.

Lists - UnOrdered List Example – UnOrdered - 2 <ul> <li> monday <li> tuesday <li> Do Laundry <li> Cut Grass <li> Clean House </ul> <li> wednesday

Lists - Ordered List Example – Ordered change the ul’s to ol’s <li> monday </li> <li> tuesday </li> <li> wednesday </li> </ol>

Lists - Definition Definition List <dl> <dt>Due Date: <dd>Next Class <dd>at 2:00pm </dl>

Tables tables are grids of rows and columns We fill in each cell row by row   Table Example – simple <table>  <tr> <td> AAAAAAAAA <td> BBB <td> CCC <td> DDD  </table>

Table Table Example – adding some space <table> <tr> <td> AAA <td> &nbsp &nbsp &nbsp &nbsp <td> BBB <td> CCC <td> <td> DDD </table>

Table Table Example – border <table border=10> <table border=10 cellspacing=20 cellpadding=30>

Table Table Example – lines <table rules=rows> <table rules=cols> <table rules=all>  

Table Table Example - width <table rules=all width=50%> <tr> <td width=25%> AAA <td align=center> BBB <td> CCC <td> DDD </table>

Next time More HTML Stuff Images / Styles / CSS