HTML Layout and Sub Meun

Slides:



Advertisements
Similar presentations
Chapter 3 – Web Design Tables & Page Layout
Advertisements

Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 6: HTML Tables.
CIS101 Introduction to Computing Week 07. Agenda Your questions Resume project Review Project Two HTML Project Three This week online Next class.
Lists and Tables Cool sites Lists unordered, ordered, definition Tables basic.
Introduction to HTML II Shih-Heng Chin. Preface Structure of a HTML File Elements used frequently 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.
INTRODUCTION TO WEB DEVELOPMENT AND HTML Lecture 06: Tables - Spring 2011.
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.
Lesson 6. Links in HTML Computer Science Welcome to Virtual University in Pakistanhttp://
Tables in HTML Basharat Mahmood, Department of Computer Science,CIIT,Islamabad, Pakistan. 1.
HTML. Goals How to use the Komodo editor HTML coding and testing – List and Images – Tables and Links – At least 2 pages and navigation –
XP 1 Tutorial 4 Designing a Web Page with Tables.
CIS 1315 – Web Development for Educators CIS 1315 HTML Tutorial 5: Working with Tables.
HTML, Third Edition--Illustrated Introductory 1 HTML, Third Edition Illustrated Introductory Unit F Working with Tables.
Lecture: Tables. Table Tags (all container tags) establishes a table (________) establishes a row (________) says what’s in the row more than one TD within.
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.
Web Development & Design Foundations with XHTML Chapter 8 Key Concepts.
HTML B OOT C AMP Chapter 10 Tables Kirkwood Continuing Education © Copyright 2015, Fred McClurg All Rights Reserved.
Web Development & Design Foundations with XHTML Chapter 8 Key Concepts.
XHTML1-1 Extensible HyperText Markup Language (XHTML) Part 2 Xingquan (Hill) Zhu
TABLES 1. In this chapter you will learn that tables have many uses in HTML. Objectives: Upon completing this section, you should be able to: 1. Insert.
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.
CS-3432 Electronic Commerce Lecture – 7 Sikandar Shujah Toor
1 Tables attributes. 2 Table attributes: border Activates border around cells Syntax: – where “n” is a value in pixels which controls the “thickness”
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.
Introduction to Web Authoring Ellen Cushman our syllabus
1 Preparation for site Create a folder in MyDocuments: beavercheese. Create a subfolder, images Classes, career, DW beginner Download.
Introduction to Web Authoring Ellen Cushman /wra210.htm Class mtg. #2.
Tables creating a table within a web page. What makes up a table? Columns Rows.
INT222 – Internet Fundamentals
Introduction to Programming the WWW I CMSC Winter 2003 Lecture 5.
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.
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.
HTML Tables. Tables Tables are defined with the tag. A table is divided into rows (with the tag), and each row is divided into data cells (with the tag).
CIS101 Introduction to Computing Week 07 Spring 2004.
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
Week 6 Creating Tables using HTML.
Working with Tables: Module A: Table Basics
>> HTML: Tables.
Web Development & Design Foundations with HTML5 8th Edition
Getting Started – Table 2
HTML Tables CS 1150 Spring 2017.
HTML Tables.
Setting your website out using a table
Introduction to HTML.
H T M L A B E S X P I N D.
Creating Tables Steps for creating a Table Important Facts about Table
HTML/XML HTML Authoring.
Mr. Rouda’s CSCI 101 sections
Creating Tables Steps for creating a Table Important Facts about Table
TABLES.
TABLES IN HTML No, not that kind of table!! THIS KIND!!
Web Design and Development
Lesson 8 Building Tables.
Creating Tables in HTML
Creating Tables in a Web Site
Creating Tables in HTML
Implementing Tables to Hold Data in HTML
H T M L A B E S X P I N D.
Site Development Foundations Lesson 6
Creating Tables Steps for creating a Table Important Facts about Table
H T M L A B E S X P I N D.
A Title Link 1 Some text A picture Link 2 Link 3 Link 4   Link 1 | Link 2 | Link 3 | Link 4.
Introduction to Web Authoring
Presentation transcript:

HTML Layout and Sub Meun

Website layout coding tutorial from PSD into XHTML and CSS https://youtu.be/kjNKo9UelBs

Website Layout

Make 2 files. Layout.html and aboutme.html And upload your server. (stuhtml/####/)

Layout.html <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>WEB PAGE TITLE GOES HERE</title> </head> <body style="margin: 0px; padding: 0px; font-family: 'Trebuchet MS',verdana;"> <table width="100%" style="height: 100%;" cellpadding="10" cellspacing="0" border="0"> <tr> <!-- ============ HEADER SECTION ============== --> <td colspan="3" style="height: 100px;" bgcolor="#777d6a"><h1>Website Logo</h1></td></tr> <!-- ============ NAVIGATION BAR SECTION ============== --> <tr><td colspan="3" valign="middle" height="30" bgcolor="#a9ae9f"><a href="layout.html">Home</a></td></tr> <!-- ============ LEFT COLUMN (MENU) ============== --> <td width="20%" valign="top" bgcolor="#999f8e"> <a href="aboutme.html">About Me</a><br> <a href="#">Menu link</a><br> <a href="#">Menu link</a> </td> <!-- ============ MIDDLE COLUMN (CONTENT) ============== --> <td width="55%" valign="top" bgcolor="#d2d8c7"> <h2>Page heading</h2> A three column layout with header, navigation bar and footer sections. The first, second and fourth table rows create the header, navigation bar and footer respectively and contain a single table cell each. All these table cells use colspan="3" attribute-value pair. <br> <br> The third table row contains three table cells which create the menu column (left), the content column (middle) and the extra column (right).<br> <td width="25%" valign="top" bgcolor="#999f8e"> </td> </tr> <!-- ============ FOOTER SECTION ============== --> <tr><td colspan="3" align="center" height="20" bgcolor="#777d6a">Copyright ©</td></tr> </table> </body>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <head> <title>WEB PAGE TITLE GOES HERE</title> </head> <body style="margin: 0px; padding: 0px; font-family: 'Trebuchet MS',verdana;"> <table width="100%" style="height: 100%;" cellpadding="10" cellspacing="0" border="0"> <tr> <!-- ============ HEADER SECTION ============== --> <td colspan="3" style="height: 100px;" bgcolor="#777d6a"><h1>Website Logo</h1></td></tr> <!-- ============ NAVIGATION BAR SECTION ============== --> <tr><td colspan="3" valign="middle" height="30" bgcolor="#a9ae9f"><a href="layout.html">Home</a></td></tr>

<tr> <!-- ============ LEFT COLUMN (MENU) ============== --> <td width="20%" valign="top" bgcolor="#999f8e"> <a href="aboutme.html">About Me</a><br> <a href="#">Menu link</a><br> <a href="#">Menu link</a> </td> <!-- ============ MIDDLE COLUMN (CONTENT) ============== --> <td width="55%" valign="top" bgcolor="#d2d8c7">

<h2>Page heading</h2> A three column layout with header, navigation bar and footer sections. The first, second and fourth table rows create the header, navigation bar and footer respectively and contain a single table cell each. All these table cells use colspan="3" attribute-value pair. <br> <br> The third table row contains three table cells which create the menu column (left), the content column (middle) and the extra column (right).<br> </td> <td width="25%" valign="top" bgcolor="#999f8e"> </td> </tr> <!-- ============ FOOTER SECTION ============== --> <tr><td colspan="3" align="center" height="20" bgcolor="#777d6a">Copyright ©</td></tr> </table> </body> <html>

http://bus2226w16.com/stuhtml/3207/layout.html http://bus2226w16.com/stuhtml/3207/aboutme.html http://bus2226w16.com/stuhtml/3207/resume.html

aboutme.html <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>WEB PAGE TITLE GOES HERE</title> </head> <body style="margin: 0px; padding: 0px; font-family: 'Trebuchet MS',verdana;"> <table width="100%" style="height: 100%;" cellpadding="10" cellspacing="0" border="0"> <tr> <!-- ============ HEADER SECTION ============== --> <td colspan="3" style="height: 100px;" bgcolor="#777d6a"><h1>Website Logo</h1></td></tr> <!-- ============ NAVIGATION BAR SECTION ============== --> <tr><td colspan="3" valign="middle" height="30" bgcolor="#a9ae9f"><a href="layout.html">Home</a></td></tr> <!-- ============ LEFT COLUMN (MENU) ============== --> <td width="20%" valign="top" bgcolor="#999f8e"> <a href="aboutme.html">About Me</a><br> <a href="#">Menu link</a><br> <a href="#">Menu link</a> </td> <!-- ============ MIDDLE COLUMN (CONTENT) ============== --> <td width="55%" valign="top" bgcolor="#d2d8c7"> <h2>Page heading</h2> A three column layout with header, navigation bar and footer sections. The first, second and fourth table rows create the header, navigation bar and footer respectively and contain a single table cell each. All these table cells use colspan="3" attribute-value pair. <br> <br> The third table row contains three table cells which create the menu column (left), the content column (middle) and the extra column (right).<br> <td width="25%" valign="top" bgcolor="#999f8e"> </td> </tr> <!-- ============ FOOTER SECTION ============== --> <tr><td colspan="3" align="center" height="20" bgcolor="#777d6a">Copyright ©</td></tr> </table> </body>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <head> <title>WEB PAGE TITLE GOES HERE</title> </head> <body style="margin: 0px; padding: 0px; font-family: 'Trebuchet MS',verdana;"> <table width="100%" style="height: 100%;" cellpadding="10" cellspacing="0" border="0"> <tr> <!-- ============ HEADER SECTION ============== --> <td colspan="3" style="height: 100px;" bgcolor="#777d6a"><h1>Website Logo</h1></td></tr> <!-- ============ NAVIGATION BAR SECTION ============== --> <tr><td colspan="3" valign="middle" height="30" bgcolor="#a9ae9f"><a href="layout.html">Home</a></td></tr>

<tr> <!-- ============ LEFT COLUMN (MENU) ============== --> <td width="20%" valign="top" bgcolor="#999f8e"> <a href="aboutme.html">About Me</a><br> <a href="#">Menu link</a><br> <a href="#">Menu link</a> </td> <!-- ============ MIDDLE COLUMN (CONTENT) ============== --> <td width="55%" valign="top" bgcolor="#d2d8c7">

<h2>Page heading</h2> A three column layout with header, navigation bar and footer sections. The first, second and fourth table rows create the header, navigation bar and footer respectively and contain a single table cell each. All these table cells use colspan="3" attribute-value pair. <br> <br> The third table row contains three table cells which create the menu column (left), the content column (middle) and the extra column (right).<br> </td> <td width="25%" valign="top" bgcolor="#999f8e"> </td> </tr> <!-- ============ FOOTER SECTION ============== --> <tr><td colspan="3" align="center" height="20" bgcolor="#777d6a">Copyright ©</td></tr> </table> </body> <html>

Add more menu Image button menu

<!-- ============ LEFT COLUMN (MENU) ============== --> <td width="20%" valign="top" bgcolor="#999f8e"> <a href="aboutme.html">About Me</a><br> <a href="#">Menu link</a><br> <a href="#">Menu link</a> </td> <!-- ============ LEFT COLUMN (MENU) ============== --> <td width="20%" valign="top" bgcolor="#999f8e"> <a href="aboutme.html">About Me</a><br> <a href="resume.html"><img src="https://crunchbase-production-res.cloudinary.com/image/upload/c_limit,h_600,w_600/v1422480063/h0fvargheeyaybm4oyyt.jpg" width="100px" height="50px“></a> <br> <a href="#">Menu link</a><br> <a href="#">Menu link</a> </td>

You can change any menu, Before make a html file