| ARC603 Drawing II, Digital Lecture: Web Page HTML Coding |
| Sources: | |
| Syracuse University Computing information on web page creation and design | |
| National Center for Supercomputer Applications information on HTML coding | |
|
|
| html code: | translates to: |
|
Declares the beginning of an html document
Declares the end of the html document. |
| More html codes: | translates to: |
<b> text </b> |
make text bold |
| <i> text </i> | make text italic |
| <u> text </u> | make text underlined |
| <p> new paragraph </p> | declares a new paragraph (inserts a blank line)(does not actually require a closing tag) |
| <p align=center> new paragraph centered </p> | centers the paragraph horizontally on the page |
| <br> line break </br> | starts a new line (does not actually require a closing tag) |
| <font> text </font> | declare font type |
| <font face="Arial" size="2"> text </font> | declares the font type to be arial and the font size to be 2 |
| <img src="full path name to image file" alt="alternate image or text" (size of image) width="pixel width" height="pixel height" | inserts an image file |
| <img src="../images/animationimages/view%20empty.gif" alt="view empty dialog box (1385 bytes)" WIDTH="194" HEIGHT="87"> | example of an image insertion (does not require a closing tag). |
| <a href="link to another web page">text</a> | hyper link, link to another web page |
| <a
href="http://soa.syr.edu/soa.core.html"> Syracuse University School of Architecture</a> |
example of a hyperlink |
| lists. HTML supports numbered, unnumbered and definition lists. List may be nested inside of lists. | |
| <ul> <li> list item </li> <li> list item </li> </ul> |
start of unnumbered list item on the list another item on the list end of list |
| <ol> <li> list item </li> <li> list item </li> </ol> |
start of ordered (numbered) list item onthe list antoher item on the list end of list |
| <dl> <dt> definition term </dt> <dd> definition </dd> <dt> definition term </dt> <dd> definition </dd> </dl> |
start of definition list term to be defined definition another term to be defined definition end of definition list |
| http://soa.syr.edu/faculty/bcoleman/ARC603/lectures/603.lecture.web.html | Send email to: webmaster@soa.syr.edu | |
| Last update: November 06, 2002. | Copyright © 2003 Bruce M. Coleman | |
| No text, images or content on this page may be copied or linked to without the author's express written permission. | ||