Setting your website out using a table

Slides:



Advertisements
Similar presentations
Use Tables for Layout Control Day 7. You will learn to: Understand Tables Create a Simple Table Modify Your Tables Appearance Create Page Layouts with.
Advertisements

Table (TABLE) Contains TABLE ROWS (TR) Contains TABLE DATA (TD) Data can contain anything Text Lists Other tables Pictures …
Session 6: HTML 2 - Content Design J0394 – Perancangan Situs Web Program Studi Manajemen Universitas Bina Nusantara.
Web Design HTML Basic Robertus Setiawan Aji Nugroho References: w3schools.com.
Introducing Web Tables
HTML. Goals How to use the Komodo editor HTML coding and testing Basic HTML tags List and Images Tables and Links At least 2 pages and navigation
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.
Images and Tables. Displaying Image Attributes: SRC= " mypic.gif " – Name of the picture file SRC= " pic/mygif.jpg " – Name of file found in pic directory.
Notes Ch. 12—Creating Tables Web Page Design. Why Use Tables? Tables are used to create a variety of items such as calendars, charts, and spreadsheets.
INTRODUCTION TO WEB DEVELOPMENT AND HTML Lecture 06: Tables - Spring 2011.
HTML Essentials Tables and Table Tags. Overview Use of Tables goes beyond tabulating data Frequently used to format Web pages / control layout Especially.
1 XHTML Tables A table is a matrix of cells, for displaying content in rows and columns The cells can include almost any element Some cells display row.
Chapter 5 Working with Tables. Agenda Add a Table Assign a Table Border Adjust Cell Padding and Spacing Adjust Cell Width and Height Add Column Labels.
CIS 1315 – Web Development for Educators CIS 1315 HTML Tutorial 5: Working with Tables.
Bayu Priyambadha, S.Kom. for long documents, you can even have links to other locations in that same document  … where ident is a variable for identifying.
CHAPTER 11 Tables. How Are Tables Used Data Display  Very tidy and very useful Better Text Alignment  Putting text in tables allows you to format indents.
Tables Teppo Räisänen LIIKE/OAMK The Role of a Table Tables are quite common in computing systems In XHTML tables are used for presenting tabular.
>> 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: Tables & Frames Internet Technology1. HTML: Tables Table tags ► surround the entire table ► header row (text is boldfaced) ► surround each row ►
HTML B OOT C AMP Chapter 10 Tables Kirkwood Continuing Education © Copyright 2015, Fred McClurg All Rights Reserved.
CS105 INTRODUCTION TO COMPUTER CONCEPTS HTML Instructor: Cuong (Charlie) Pham.
Tutorial 5 Working with Tables and Columns
Tutorial 5 Working with Tables and Columns
IS1824: Introduction to Internet Multimedia Lecture 5: Layout in HTML Rob Gleasure
Html Tables Basic Table Markup. How Tables are Used For Data Display Tables were originally designed to display and organize tabular data (charts, statistics,
1 Week Four– Advance HTML 2 Dr. Fadi Safieddine. 2 Lecture Content Basic HTML Tables Using based Feedback form Creating and Using Image Maps Nested.
HTML: Tables & Frames Internet Technology.
Introducing Web Tables. Tables for tabulating items  Better looking  More flexibility  More efficient to explain information than plain text.
Table (TABLE) Contains TABLE ROWS (TR) Contains TABLE DATA (TD) Data can contain anything › Text › Lists › Other tables › Pictures › …
Tables with XHTML Please use speaker notes for additional information!
 2003 Prentice Hall, Inc. All rights reserved. Introduction to HTML: Tables Outline 1 Introduction 2 Basic HTML Tables 3 Intermediate HTML Tables and.
Unit 4 Create and Use Tables. TITLE CORNELL NOTES TOPIC: NOTES: Name: Date: 09/08/2009 Period : Summary: Reasons for using tables Unit 4 Page 1 Display.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
Using Tables for Layout INP150 Session #8. Layout Map out your page Design with paper and pencil Determine number of rows and columns you need Determine.
©SoftMoore ConsultingSlide 1 Introduction to HTML: Block-Level Elements.
Web111a_chapt04.ppt HTM: Section 4 Tables Table Types Text table elements Easy to use Use fixed-font text (font family monospace) Andale Mono Courier Monaco.
TABLES IN HTML No, not that kind of table!! THIS KIND!!
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.
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 ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
CSE 154 Lecture 17: HTML tables.
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Website Development & Management
>> HTML: Tables.
Tutorial 5 Working with Tables and Columns
HTML Layout and Sub Meun
<TAG> <html> <head>
H T M L A B E S X P I N D.
TABLES.
Essentials of HTML.
HTML/XML HTML Authoring.
Style Sheet Create a new CSS called Cameras.CSS TD Web Authoring
Table CSS Create a new CSS called tablestyle.CSS Green Background
Essentials of HTML.
CSS and Box Model.
5.2.3 Be able to use HTML and CSS to construct web pages
TABLES IN HTML No, not that kind of table!! THIS KIND!!
Web Design and Development
Creating Tables in HTML
If You Know Nothing About HTML, This is Where You Start.
HTML Tables & Frames Internet Technology.
Computer communications
Using tables in HTML Goes in order with Examples at my site.
USING IMAGES This is the bottom of the page. Note the alignment of having text before and after, at the top, in the middle and at the bottom. Code is on.
Site Development Foundations Lesson 6
Lesson 5: HTML Tables.
Make a Heading and sub-headings.
Contents: 1. More on tables 2. Images (the <img> tag)
Web Programming and Design
HTML Tables & Frames Internet Technology.
Presentation transcript:

Setting your website out using a table Table layout Setting your website out using a table

Basics <!doctype html> <html> <head><title>My Webpage</title> Clever instructions for your page </head> <body> All the content of your page </body> </html>

How can we make it look better? Used to use ‘frames’

Tables

LETS MAKE A TABLE <table> <tr> - a table row divide the row into columns with <td> Close each division </td> On the top row use table header <th> & </th> instead of <td> Close table row </tr> New table row etc Close table </table>

Working example <html> <head> <title> Table 1 <body> <h1 align = "center"> TABLE LAYOUT</h1> <table border="5" width ="300px" height ="400px" align = "center" img align = "middle"> <CAPTION>This is a simple 3x3 table</CAPTION> <tr><th>table 1</th><th>column 2</th></tr> <tr><td>row 1 col1</td><td>row 1 col2</td></tr> <tr><td>row 2 col1</td><td>row 2 col2</td></tr> <tr><td>bottom row col1</td><td>bottom row col2</td></tr> </table> </body> </html>

Task Can you make this table?

Some hints put images into same folder as web-page <img src="imagename.jpg" alt="an image"> <td colspan=“x”> makes a division stretch across several columns underneath it <td rowspan=“y”> makes a division stretch across several rows alongside it X and y should be replaced by suitable whole numbers!