Make an HTML table using Visual Studio. Approach 1: drag table from Toolbox.

Slides:



Advertisements
Similar presentations
HTML TABLES EXPLAINED. What is a TABLE? The HTML table allows web designers to arrange & organize data -- text, images, hyperlinks, forms, form fields,
Advertisements

Table (TABLE) Contains TABLE ROWS (TR) Contains TABLE DATA (TD) Data can contain anything Text Lists Other tables Pictures …
Chapter 9 Working with Tabs and Tables. Chapter Objectives Work with tabs Create and format a table Format text in a table Place graphics in a table.
1 After completing this lesson, you will be able to: Insert a table. Navigate and select cells within a table. Merge table cells. Insert and delete columns.
Designing Websites Using HTML and FrontPage A Typical Webpage View Source A webpage is a text file containing instructions to tell a computer how the.
Spanning Rows and Columns Mrs. Wilson Internet Basics & Beyond.
Copyright 2003 Peter McDevitt 1 Microsoft Excel 2002 Lecture 3 – A Professional Looking Worksheet.
CSD 340 (Blum)1 Using Microsoft Visual Studio.NET Development Environment and Introducing Functions.
Chapter 3 Tables and Page Layout
ETT 229 Fall 2004 Web Design Basics II. Agenda 11:00-11:05 – Quiz 14 11:05-11:50 – Web Design Lecture 11:50-12:15 – Web Design Practice 2.
Macromedia Dreamweaver MX 2004 Design Professional Tables WORKING WITH.
HTML TABLES Cyndi Hageman. Tables   Attributes Name or id – used to identify the table Border = set this to determine if there is a border and the size.
Netscape Composer Add A Custom Button. Launch Composer File>New Composer Page Select The Table Icon.
Create a Form in Dreamweaver Go to: Introduction Step 1 Step 2 Step 3 Step 4 Step 5 Step 6 Introduction Goals Purpose Scope Prerequisites Install (if needed)
1 Tables: Data in Rows and Columns – What is Table? – How Tables are Used? – Designing Tables – Table, Cell, Row Attributes – Using Tables for Alignment.
Creating Tables in a Web Site Using an External Style Sheet HTML5 & CSS 7 th Edition.
HTML. Creating a Table Attributes: border: indicates the border type of the table Value: 0 (no border), 1, 2, etc. cols: indicates the number of columns.
What is a TABLE? The HTML table allows web designers to arrange & organize data -- text, images, hyperlinks, forms, form fields, other tables, etc. Tables.
HTML Tables. Start of page where we want to place a table.
1 Excel Lesson 2 Formatting and Editing Worksheets Microsoft Office 2010 Fundamentals Story / Walls.
Identifies the Structure Table Row Column 1 Table Heading Column 2.
Images: HTML and CSS. The Bells page without images in Source View and Design View.
Using Dreamweaver getting started 1)Start in your “My Documents” folder 2)Create a new folder called “website” 3)Create a sub folder called “images” 4)Start.
How to create tables in HTML…
Creating Tables in a Web Site Using an External Style Sheet
Creating Tables in a Web Site.  Define table elements  Describe the steps used to plan, design, and code a table  Create a borderless table to organize.
MS-Word XP Lesson 8. Inserting Column to Table 1.Select column (click on top margin) 2.Click on table menu 3.Select insert sub menu and click on columns.
Copyright © Texas Education Agency, All rights reserved. 1 Web Technologies Website Development with Dreamweaver.
Creating Tables in a Web Site
HTML Comprehensive Concepts and Techniques Second Edition Project 3 Creating Tables in a Web Site.
Web Technologies Website Development Trade & Industrial Education
Website Development with Dreamweaver
Microsoft Word 2000 Presentation 5. Major Word Topics Columns Tables Lists.
Microsoft Expression Web-Illustrated Unit I: Working with Tables.
Adobe Dreamweaver CS3 Revealed CHAPTER FIVE: USING HTML TABLES TO LAY OUT A PAGE.
Open Dreamweaver Start All programs Adobe design and web premium Adobe Dreamweaver.
Chapter 5 Quick Links Slide 2 Performance Objectives Understanding Framesets and Frames Creating Framesets and Frames Selecting Framesets and Frames Using.
CSD 340 (Blum)1 Using Visual Studio CSD 340 (Blum)2 Start/Microsoft Visual Studio 2005/Microsoft Visual Studio 2005.
1 TECH1001 Lecture 6 Electronic Publishing and Production 1 More About Tables.
Using an HTML image (img) element’s onclick event to change the source (src) of an iframe to an embedded youtube video.
HTML Basics. HTML Introduction Stands for HyperText Markup Language. HTML files are plain text files with mark ups. Some characteristics of HTML: –No.
Course ILT Forms and queries Unit objectives Create forms by using AutoForm and the Form Wizard, and add or modify form headers and footers Open and enter.
CIS234A Lecture 8 Instructor Greg D’Andrea. Review Text Table contains only text, evenly spaced on the Web page in rows and columns uses only standard.
26 HTML Tables … surround table … surround each row … surround each cell … like, but bold and centered by default (for table headings) … table title No.
Tables. What are tables? To create a table go to the insert tab on the ribbon. Table will be on the left of the ribbon in the tables group After selecting.
HTML Concepts and Techniques Fifth Edition Chapter 4 Creating Tables in a Web Site.
How To Create HTML Tables. Table Structure General HTML code for a Web Table: table cells table cells.
1 Creating Links Lesson 2. 2 In the center column type : Home | Order Now | Contact Us This is the navigation button which will link to the other pages.
Positioning Objects with CSS and Tables
Interactive PPT Directions. IMPORTANT!  Before you make any hyperlinks or action buttons, you should create the slide that you want to link to and give.
Doing TABLES Creating Tables in HTML. Start creating the table by using the Table container tag.
Web and Multimedia Development Copyright © Genetic Computer School 2007WM LESSON OVERVIEW  Use of Tables  Creating Tables  Try It – 1  Creating.
Word 2010 Edit Page Layout In this lesson, you will learn how to insert columns and page breaks. How to change the page orientation, paper size, page margins,
ASP.NET Web Controls.
Microsoft Excel.
Getting Started – Table 2
HTML Tables CS 1150 Spring 2017.
HTML Tables CS 1150 Fall 2016.
Word Lesson 7 Working with Documents
Creating Tables in a Web Site
DREAMWEAVER MX 2004 Chapter 3 Working with Tables
Using rowspan and colspan attributes
Implementing Tables to Hold Data in HTML
Using rowspan and colspan attributes
Format a Table: 4.4 project 2
Netscape Composer Add A Custom Button.
Make a Heading and sub-headings.
Hypertext Markup Language Table 11th Lecture
Step 1:. Open Microsoft FrontPage application.
Advanced Tables.
Presentation transcript:

Make an HTML table using Visual Studio

Approach 1: drag table from Toolbox

Result of Approach 1: A 3-by-3 table

Table tags everything between these tags is part of the table everything between these tags is part of a row everything between these tags is part of a cell (table data item) stands for non-breaking space – Note that each cell has a non- breaking space in it

For Approach 2 you must be in Design view. Then Table appears on the menu.

Table/Insert Table

Use the Insert Table dialog to select the number of rows, columns, border size and border color. Click OK

Result so far in Design View

Result so far in Source View

In Design View, highlight two or more cell in a row and choose Table/Modify/Merge Cells

Result in Design View

Result in Source View – see colspan attribute (and missing in same row)

In Design View highlight two or more cells in a column and go to Table/Modify/Merge Cells

Result in design View

Rsult in Source View – see rowspan attribute (and missing in next row)

Get the Properties Window (if not already there) by going to View/Properties Window

Highlight all of the cells and select style in the Properties Window. Click on the ellipsis … button

Choose the Border category and the select a style, width and color. Click OK.

Result of adding td style

Result in Source (not done efficiently)

Same effect – just apply the same style to all of the ’s at once between the tags in the head