HTML Recitation Notes

Similar documents
Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc mraymond@luminys.com

Lecture 9 HTML Lists & Tables (Web Development Lecture 3)

{color:blue; font-size: 12px;}

How To Create A Web Page On A Windows (For Free) With A Notepad) On A Macintosh (For A Freebie) Or Macintosh Web Browser (For Cheap) On Your Computer Or Macbook (

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Contents. Downloading the Data Files Centering Page Elements... 6

FOUNDATION OF INFORMATION TECHNOLOGY Class-X (TERM II)

CST 150 Web Design I CSS Review - In-Class Lab

ITNP43: HTML Lecture 4

HTML and CSS. Elliot Davies. April 10th,

Module 6 Web Page Concept and Design: Getting a Web Page Up and Running

Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University

Web page design in 7 days!

Learnem.com. Web Development Course Series. Learn em. HTML Web Design in 7 days! By: Siamak Sarmady

CHAPTER 10. When you complete this chapter, you will be able to:

Caldes CM12: Content Management Software Introduction v1.9

WYSIWYG Editor in Detail

Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17

Web Developer Jr - Newbie Course

Help on Icons and Drop-down Options in Document Editor

Introduction Designing your Common Template Designing your Shop Top Page Product Page Design Featured Products...

LaGuardia Community College Thomson Ave, Long Island City, New York Created by ISMD s Dept. Training Team. Overview

ICE: HTML, CSS, and Validation

Creating Web Pages With Dreamweaver MX 2004

JJY s Joomla 1.5 Template Design Tutorial:

Introduction to Web Development

BLACKBOARD 9.1: Text Editor

FETAC Certificate in Multimedia Production. IBaT College Swords. FETAC Certificate in Multimedia Production Web Authoring Dreamweaver 3

CIS 467/602-01: Data Visualization

Introduction to Web Technologies

HTML Fundamentals IN THIS APPENDIX

Simply download Beepip from and run the file when it arrives at your computer.

WebCT 4.x: HTML Editor

Quick Start Guide To: Using the Sage E-marketing Online Editor

GUIDE TO CODE KILLER RESPONSIVE S

Web Authoring CSS. Module Descriptor

WordPress and HTML Basics

CS134 Web Site Design & Development. Quiz1

ART 379 Web Design. HTML, XHTML & CSS: Introduction, 1-2

Creating HTML authored webpages using a text editor

Web Design and Databases WD: Class 7: HTML and CSS Part 3

Using Adobe Dreamweaver CS4 (10.0)

Intro to Web Design. ACM UIUC

Web Authoring. Module Descriptor

What is CSS? Official W3C standard for controlling presentation Style sheets rely on underlying markup structure

Guide to B2B marketing. Part Three: Building great s

NURSING 3225 NURSING INQUIRY WEB SITE DEVELOPMENT GUIDE BOOK

KOMPOZER Web Design Software

Introduction to XHTML. 2010, Robert K. Moniot 1

Website Development Komodo Editor and HTML Intro

Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,:

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Web Design with CSS and CSS3. Dr. Jan Stelovsky

Mastering the JangoMail EditLive HTML Editor

How to Create an HTML Page

4. Click on the insert tab: Create a title at the top of the page using word art that says Microsoft Word PD 11-12

Garfield Public Schools Fine & Practical Arts Curriculum Web Design

This document will describe how you can create your own, fully responsive. drag and drop template to use in the creator.

How To Write A Web Page In Html

Basics of HTML (some repetition) Cascading Style Sheets (some repetition) Web Design

Create Your own Company s Design Theme

HTML Lesson 7. Your assignment:

Web Design for Print Designers WEB DESIGN FOR PRINT DESIGNERS: WEEK 6

Joomla Article Advanced Topics: Table Layouts

Dreamweaver. Introduction to Editing Web Pages

Designing HTML s for Use in the Advanced Editor

Creating Web Pages with Dreamweaver CS 6 and CSS

Advanced Editor User s Guide

Web Publishing Basics 2

In this chapter, you will learn how to...

Dreamweaver CS4 Day 2 Creating a Website using Div Tags, CSS, and Templates

CREATING WEB PAGES USING HTML INTRODUCTION

Responsive Web Design: Media Types/Media Queries/Fluid Images

Building a Horizontal Menu in Dreamweaver CS3 Using Spry R. Berdan

Code View User s Guide

CREATING A NEWSLETTER IN ADOBE DREAMWEAVER CS5 (step-by-step directions)

ADOBE DREAMWEAVER CS3 TUTORIAL

Cut-to-the-Chase Series Web Foundations. HTML Assignment. By Eric Matthews Visit us at:

Using Style Sheets for Consistency

Macromedia Dreamweaver Tutorial

Getting Started with KompoZer

Cascading Style Sheets (CSS)

Taking your HTML s to the Next Level. Presented by: Joey Trogdon, Asst. Director of Financial Aid & Veterans Affairs Randolph Community College

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide

Creating a Resume Webpage with

04 Links & Images. 1 The Anchor Tag. 1.1 Hyperlinks

FACULTY OF COMMERCE, OSMANIA UNIVERSITY

Basic tutorial for Dreamweaver CS5

HTML Tables. IT 3203 Introduction to Web Development

Joomla! 2.5.x Training Manual

customer community Getting started Visual Editor Guide!

7 th Annual LiveText Collaboration Conference. Advanced Document Authoring

Appendix H: Cascading Style Sheets (CSS)

Communication Manager Template Library

Development Perspective: DIV and CSS HTML layout. Web Design. Lesson 2. Development Perspective: DIV/CSS

New Perspectives on Creating Web Pages with HTML. Considerations for Text and Graphical Tables. A Graphical Table. Using Fixed-Width Fonts

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. Web Design in Nvu Workbook 2

CSS. CSS - cascading style sheets CSS - permite separar num documento HTML o conteúdo do estilo. ADI css 1/28

Advanced Web Design. Zac Van Note.

MCH Strategic Data Best Practices Review

Transcription:

HTML Recitation Notes Basic Structure of HTML program <html> <head> <title>title of the Page</title> </head> <body> Content of the Page </body> </html> The order in which you open and close the tags is important! The content between <html> & </html> describes the webpage. The content between <body> & </body> describes the visible content of the webpage. Basic Tags Bold: <b>text appears bold </b> Italics: <i> Text appears in Italics </i> Underline: <u> Text appears underlined </u> Paragraph: <p> Text appears in a paragraph </p> Line Break: <br/> Horizontal Line: <hr/> Heading tags (in descending order of size): <h1>text</h1>, <h2>text</h2>, <h3>text</h3>, <h4>text</h4>, <h5>text</h5>, <Text</ Hyperlink: <a href= URL target= _blank >Text to appear on webpage</a> target= _blank is to open the link page on a new window/tab Image: <img src= Path to Image alt= some text /> alt= some text is to display some alternate text in case there is an error uploading the image. Basic Structure of a List Unordered List:- <ul type= disc > <li> Item 1</li> <li> Item 2</li> <li> Item 3</li> </ul>

Ordered List:- <ol type A > <li> Item 1</li> <li> Item 2</li> <li> Item 3</li> </ol> Basic Structure of Table <table> </table> <tr> -----> Start of Row 1 <td> Row 1, Cell 1</td> -----> 1 st Cell on Row 1 <td> Row 1, Cell 2</td> -----> 2 nd Cell on Row 1 </tr> -----> End of Row 1 <tr> -----> Start of Row 2 <td> Row 2, Cell 1</td> -----> 1 st Cell on Row 2 <td> Row 2, Cell 2</td> -----> 2 nd Cell on Row 2 </tr> -----> End of Row 2 Comment Tag:- <!-- This is the Comment Tag --> Mailto Tag:- <a href= mailto:xyz@rutgers.edu >Email Us</a> Cascading Stylesheets Apply style to all tags of a particular type throughout the page by placing the style tag in the head section. For example, let us set the style of h2 tag and the table tag for an entire page. <head> <style type= text/css > h2 font-family:verdana; color:blue;

table width:80%; height:50%; border-style:solid; border-color:red; </style> </head> This causes the content within <h2> in the entire page to be in Verdana and in blue. Also, wherever the <table> tag is used in the body, it is formed with the above confiugartions. Using a Stylesheet file to apply styles to entire website, Use <link rel= stylesheet type= text/css href= mystyle.css > in the <head> tag of each page in which the styles have to be included. The file mystyle.css should be in the same folder as each of the webpages it is being used in. It should contain only the content you would put within the <style></style> tags. There should be no tags within a.css file. For example, the content of mystyle.css could be (for the same example as above), h2 table font-family:verdana; color:blue; width:80%; height:50%; border-style:solid; border-color:red; Creating Hyperlinks to go to the Top/ Bottom of a Page To go to bottom of page from top, use the following tag at the beginning of the body section, <a name= top href= #bottom >Go to Bottom</a> To go to top of page from bottom, use the following tag at the end of the body section, <a name= bottom href= #top >Go to Top</a>

Attributes Format = <tag attribute= value > Each of the values can have specifications, for example <body style= background-color:red >, red is a specification for the value. Do check out all possible specifications for each of the values for the different attributes. Some of the Tags we did in the Recitation Tag Attribute Value Property <body> style background-image:url('photo.jpg') Sets the image photo.jpg as the background <body> style background-color:red Sets the background color to red <body> style background-color:rgb(x,y,z) Sets the background color to a combination of red, green and blue with x,y & z intensities <img> width 120 Sets the width of the image to 120 pixels <img> height 150 Sets the height of the image to 150 pixels <img> align top left right bottom Aligns the image according to the value <img> alt Text alt attribute specifies an alternate text for an image, if the image cannot be displayed <p> style font-family:verdana Sets the font for the text to Verdana in the paragraph <p> style color:red Sets the font color to red for <p> style font-size:14 Sets the font size to 14 for the text in the paragraph <p> style text-align Align the paragraph text <h1>...< style font-family:verdana Sets the font to Verdana for

<h1>...< <h1>...< style color:red Sets the font color to red for style font-size:14 Sets the font size to 14 for the text in the paragraph <ul> type disc/square/circle Forms an unordered list with bullet shapes as disc or square or circle respectively <ol> type 1/A/a/I/i Forms an ordered list with numbering as numerical or Uppercase Alphabetic or Lowercase Alphabetic or Uppercase Roman Numerals or Lowercase Roman Numerals <table> style height:50% Sets the height of the table to 50% of page. Height can be specified in terms of percentage or no. of pixels <table> style width:80% Sets the width of the table to 80% of page. Width can be specified in terms of percentage or no. of pixels <table> style border-style:solid Sets the style of the table border to solid <table> style border-width:2px Sets the width of the border to 2px <table> style border-color:green Sets the color of the border to green <table> style Border-spacing:1px Sets spacing of adjacent cells <table> border 1px Sets the border thickness to 1px (displays cells) <td> colspan 2 Extend the cell to span to 2 columns <td> rowspan 2 Extend the cell to span to 2 rows