HTML HTML and css 2012 Brian Davison. Assistants Dennis Doug Louise Martin Steven Stephanie.

Slides:



Advertisements
Similar presentations
HTML 4 Hypertext Markup Language Tables, Lists & Links Science & Art Multimedia.
Advertisements

Table (TABLE) Contains TABLE ROWS (TR) Contains TABLE DATA (TD) Data can contain anything Text Lists Other tables Pictures …
TABLES 6 How to create tables What information suits tables How to represent complex data in tables.
1 Programming the Web: HTML Basics Computing Capilano College.
Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
Computing Concepts Advanced HTML: Tables and Forms.
 2008 Pearson Education, Inc. All rights reserved. 1 Introduction to HTML.
Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently Tables.
Exploring the Internet Creating web pages with 2-d layout Instructor: Michael Krolak Instructor: Patrick Krolak See also
Week 1 8/10/2015iSTTS, Agenda Introduction to HTML Creating and publishing a Web page Validating a document Main HTML elements Block-level HTML.
Chapter 14 Introduction to HTML
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.
What is a TABLE? The HTML table allows web designers to arrange & organize data -- text, images, hyperlinks, forms, form fields, other tables, etc. Tables.
Lesson 6. Links in HTML Computer Science Welcome to Virtual University in Pakistanhttp://
HTML. Goals How to use the Komodo editor HTML coding and testing – List and Images – Tables and Links – At least 2 pages and navigation –
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.
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.
Creating Tables in a Web Site
HTML Comprehensive Concepts and Techniques Second Edition Project 3 Creating Tables in a Web Site.
Dr. Nuha El-KhaliliInternet Programming ( ) HTML Hyper Text Markup Language The language of web pages Maintained by the W3C
HTML Overview Part 4 – Tables 1. HTML Tables  Tables are defined with the tag pair.  A table is divided into rows with tag pairs. o tr stands for "table.
 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.
Finishing your site HTML and css 2012 Brian Davison.
Introduction to HTML. What is HTML?  Hyper Text Markup Language  Not a programming language but a markup language  Used for presentation and layout.
Introduction To HTML.  HTML stands for Hyper Text Markup Language.  HTML was developed by Tim Berners-Lee.  HTML is maintained by World Wide Web Consortium(W3C).
HTML tags Some popular ones. Paragraph: separated by a single line of white space Line break NOTE: no end tag is used for this tag Headlines ( through.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
 2003 Prentice Hall, Inc. All rights reserved. Introduction to HTML: Tables Outline 1 Introduction 2 Basic HTML Tables 3 Intermediate HTML Tables and.
Computer Science 101 Lists and Tables. Lists Unordered lists - use a bullet Ordered lists - use a number, Roman numeral, or letter.
ALBERT WAVERING BOBBY SENG. Welcome  Introductions  Existing knowledge?  Laptops?  Course goals  Introduction to several topics  Encourage creativity.
HTML (Hyper Text Markup Language) Lecture II. Review Writing HTML files for web pages – efficient compact – fundamental. Text files with htm extension.
Introduction to HTML UWWD. Agenda What do you need? What do you need? What are HTML, CSS, and tags? What are HTML, CSS, and tags? html, head, and body.
HTML CS 105. Page Structure HTML elements control the details of how a page gets displayed. Every HTML document has the following basic structure: … …
1 Creating the Home Page. 2 Creating a Table Table attributes  Two rows and two columns  No border  Left-aligned Change the vertical alignment of the.
Creating Tables in a Web Site HTML 4 Created by S. Cox.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Introduction to Web Authoring Ellen Cushman /wra210.htm Class mtg. #2.
Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
1999, COMPUTER SCIENCE, BUU Introduction to HTML Seree Chinodom
HTML. HTML: What is it? – HTML stands for Hyper Text Markup Language – An HTML file is a text file containing small markup tags – The markup tags tell.
Advanced Tables. Let's build some tables using each of these features and then try combining both features into the same table. Spanning Rows and Columns.
Introduction to Programming the WWW I CMSC Winter 2003 Lecture 5.
Introduction to HTML Dave Edsall IAGenWeb County Coordinator’s Conference June 30, 2007.
Introduction to HTML Hypertext Mark-up Language. HTML HTML = Hypertext Mark-up Language Is just plain simple text marked up by “tags” You can create a.
1 R3 R1 R5 R4 R6 R2 B B A A Looking at the Code Under the View menu Select Source.
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.
Introduction to Web Authoring Bill Hart-Davidson AIM: billhd30 Session 2
CIS101 Introduction to Computing Week 07 Spring 2004.
HTML.
Web Basics: HTML/CSS/JavaScript What are they?
Advanced Tables.
Week 6 Creating Tables using HTML.
>> HTML: Tables.
Basic XHTML Tables XHTML tables—a frequently used feature that organizes data into rows and columns. Tables are defined with the table element. Table.
H T M L A B E S X P I N D.
HTML Tables CS 1150 Fall 2016.
Web Design and Development
WEB PAGE AUTHORINHG AND DESIGNING
Creating Tables in a Web Site
Advanced Tables.
Introduction to HTML.
Computer communications
The Internet 10/27/11 XHTML Forms
H T M L A B E S X P I N D.
WEB PAGES: Tables Welcome Back !.
Web Programming and Design
Presentation transcript:

HTML HTML and css 2012 Brian Davison

Assistants Dennis Doug Louise Martin Steven Stephanie

The Internet

Moving information around

The World Wide Web Developed by a British Nuclear Physicist working in CERN Sir Tim Berners-Lee He invented three things: –HTML – language –HTTP – a protocol –WorldWideWeb – the first browser HTML includes methods to mix –Text –Pictures –Links

Web pages Header Menu Panel Images Links Field Button

This week You will build a personal Web site with –At least four pages –Links –Images –Some interactive features Mon: basic HTML Tue, Wed: css Thu: working with a server Fri: finishing your Web site Home

Having a goal

Basic layout

HTML This is an example of a simple web page. First Page Hello World

Tags and attributes... <img src='images/picture1.png' alt='Woodcut of the sun as a face' title='Sun face' />

Unordered Lists One Two Three

Links < a href = ' > Google A link to Google And another to Baidu Learn SQL in another window.

Tables The has many row elements The row elements have many or elements tr th td

Tables The table may have a You may use the colspan and rowspan attributes on a You may use the border attribute on the tr th td Caption

Table Example A Table Word Number One 1...

Using tables for layout Table cell spreads over two rows Table cell spreads over two columns

Being proactive Everyone's Web site should be different You must be creative Decide what you want to do, then try to find the answer

Finding answers

Example tutorial page

Being organised Having a good text editor – eg Notepad++ Keeping your files in sensible locations

whiteatom.zzuli.edu.cn