basic html workshop by: preeda chunjongkolkul (pete) systems librarian/webmaster email:...

21
Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: [email protected]

Upload: stephany-cameron

Post on 29-Dec-2015

214 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Basic HTML Workshop

By: Preeda Chunjongkolkul (Pete)Systems Librarian/Webmaster

Email: [email protected]

Page 2: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Table of Contents

Internet & HTML conceptInternet TermsSoftware Tool (WYSWYG vs. Text Editor)Introduction to HTML TagsMaking your web page.

Page 3: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Internet & HTML concept

your computer

server

users

Page 4: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Internet & HTML concept

html(s) / image(s) Server

Page 5: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Internet Terms

URL: Uniform Resource Locatorhttp: Hypertext Transfer Protocolftp: File Transfer Protocolhttp://www.yahoo.comwww – Server Machine Name/Given Nameyahoo – domain namecom – top level domain name

Page 6: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Your Internet Address

H: Drive on the UB NetworkStudentshttp://home.ubalt.edu/students/NT user ID Ex: http://home.ubalt.edu/students/nws9956Staff

http://home.ubalt.edu/NT staff user IDEx: http://home.ubalt.edu/ntaschun

Page 7: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Software Tool

WYSWYG: Netscape Composer, Frontpage, DreamWeaver, Homesite, Word, Powerpoint etc.Text Editor: Notepad, Wordpad, DreamWeaver, Frontpage, Homesite, BBEdit etc.Graphics Editor: Photoshop, Paintshop etc.

Page 8: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Basic Tags

<html></html>Creates an HTML document

<head></head>Sets off the title and other information that isn't displayed on the Web page itself

<body></body>Sets off the visible portion of the document

Page 9: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Header Tags

<title></title>Puts the name of the document in the title bar

Page 10: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Body Attributes<body bgcolor=?>Sets the background color, using name or hex value

<body text=?>Sets the text color, using name or hex value

<body link=?>Sets the color of links, using name or hex value

<body vlink=?>Sets the color of followed links, using name or hex value

<body alink=?>Sets the color of links on click

Color Code - http://hotwired.lycos.com/webmonkey/reference/color_codes/

Page 11: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Text Tags 1<hl></hl>Creates the largest headline

<h6></h6>Creates the smallest headline

<b></b>Creates bold text

<i></i>Creates italic text

Page 12: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Text Tags 2

<strong></strong> Emphasizes a word (with italic or bold)

<font size=?></font>Sets size of font, from 1 to 7)

<font color=?></font>Sets font color, using name or hex value

Page 13: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Links Tags<a href="URL"></a>Creates a hyperlink

<a href="mailto:EMAIL"></a>Creates a mailto link

<a name="NAME"></a>Creates a target location within a document

<a href="#NAME"></a>Links to that target location from elsewhere in the document

Page 14: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Formatting Tags 1<p></p>Creates a new paragraph

<p align=?>Aligns a paragraph to the left, right, or center

<br>Inserts a line break

<blockquote></blockquote> Indents text from both sides

<center></center>

Aligns object(s) to center

Page 15: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Formatting Tags 2<ol></ol>Creates a numbered list

<li></li>Precedes each list item, and adds a number

<ul></ul>Creates a bulleted list

<div align=?>A generic tag used to format large blocks of HTML, also used for stylesheets

Page 16: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Graphical Elements<img src="name">Adds an image

<img src="name" align=?>Aligns an image: left, right, center; bottom, top, middle

<img src="name" border=?>Sets size of border around an image

<hr>Inserts a horizontal rule

<hr size=?>Sets size (height) of rule

<hr width=?>Sets width of rule, in percentage or absolute value

Page 17: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Table Tags

<table></table>Creates a table

<tr></tr>Sets off each row in a table

<td></td>Sets off each cell in a row

Page 18: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Table Attributes 1<table border=#>Sets width of border around table cells

<table cellspacing=#>Sets amount of space between table cells

<table cellpadding=#>Sets amount of space between a cell's border and its contents

<table width=# or %>Sets width of table - in pixels or as a percentage of document width

Page 19: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Table Attributes 2<td colspan=#>Sets number of columns a cell should span

<td rowspan=#>Sets number of rows a cell should span (default=1)

<td nowrap>Prevents the lines within a cell from being broken to fit

<tr align=?> or <td align=?>Sets alignment for cell(s) (left, center, or right)

Page 20: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Related Links

http://www.w3.org/http://www.webreference.com/http://www.webcom.com/html/tutor/http://www.webmonkey.com/

Page 21: Basic HTML Workshop By: Preeda Chunjongkolkul (Pete) Systems Librarian/Webmaster Email: pchun@ubmail.ubalt.edu

Let’s do web page