HTML
HTML
denisegaro HYPERLINK "javascript:void(0);"Download To view this Presentation, you need the latest Flash player. Click here to install the latest Flash player.Get Flash
Share HYPERLINK "javascript:void(0);"Add to HYPERLINK "javascript:void(0);"Flag Embed Email Send to Blogs and Networks Add to Favorites HYPERLINK "javascript:void(0);"Add to Channel Uploaded from authorPOINT lite Insert YouTube videos in PowerPont slides with aS Desktop Copy embed code: (To copy code, click on the text box) Embed: URL:
Thumbnail:
WordPress Embed Customize Embed The presentation is successfully added In Your Favorites. Views: 2679 Category: Education
License: All Rights Reserved Like it (2) Dislike it (0) Added: February 13, 2008 This Presentation is Public Favorites: 1
Presentation Description
Basic introduction to HTML.
Comments
Posting comment... Premium member
Presentation Transcript
Intro to HTML:
Intro to HTML February 13, 2008 IST 523 Denise A. Garofalo
Topics:
Topics Background & naming documents Anatomy Headings, font size, alignment Linking Images Tables XML, metadata Resource sites
HTML:
HTML short for hypertext markup language Hyper is the opposite of linear. HTML does not hold to the old linear pattern but allows the person viewing the Web page to go anywhere, any time Text is what you will use Mark up is what you will do Language it's a
Writing HTML:
Writing HTML by hand using tools such as NotePad on Windows OS X users can use TextEdit on the Mac using an HTML assistant program easier than by hand but harder to understand HTML because the program does all work
HTML documents:
HTML documents must be text only when you save an HTML document, you must save only the text, nothing else. HTML browsers can only read text They don't understand anything else
HTML annotations:
HTML annotations Web page authors may write notes or describe what is happening within the HTML document these notes show in the HTML source, not the Web page display they write their notes in the following format: <!-- start of syllabus and definitions -->
Headings:
Headings Heading commands are used to create headings there are six (6) heading commands: <H1> through <H6> <H1> is the largest and <H6> is the smallest heading
commands create nice, bold text with a simple H# and /H# command When using a heading command you set the text alone the heading commands carry a pseudo <P> command with them other text cannot sit right up against a heading
Font size:
Font size heading commands great for the top of the page get a little more control over your text size via the <FONT SIZE> commands there are twelve (12) font size commands available: +6 through +1 and -1 through -6 +6 is the largest (it's huge); -6 is the smallest (it's a little too small)
Aligning text:
Aligning text Default alignment is left-justified To center text you surround the text you want centered with simple <CENTER> and </CENTER> commands: <CENTER> All text in here will be centered </CENTER> To align text on the right, set the text aside as a separate paragraph using the <P> command plus an attribute: <P ALIGN="right">Text in the paragraph is pushed to the right</P>.
Creating a link:
Creating a link links to another page are a set tag format <A HREF="http://URL of the web page">text you want to display on the web page</A> A stands for Anchor. It begins the link to another page. HREF stands for Hypertext REFerence. That says to the browser, "This is where the link is going to go." URL of the web site is the FULL ADDRESS of the link. Also notice that the address has an equal sign in front of it and is enclosed in quotes, because it's an attribute of the Anchor tag, a command inside of a command
Images:
Images format for placing an image: <IMG SRC="filename.gif"> IMG stands for "image" and tells the browser that an image will go here on the page wherever you write in the image tag SRC stands for "source" and this is an attribute, a command inside a command, that tells the browser where to go to find the image filename.gif is the name of the image,
and this file name follows the same format as HTML docs name (of the image file) then a dot then there is a suffix (gif) or .jpg or .bmp
Image info:
Image info place image files in the same directory as the page you can call for the image by name alone otherwise you'll have to start adding directories and sub-directories to the SRC attribute some place all their images in an image directory; that can cut down on the confusion be consistent on where you locate images or else the image wont display
Clickable images:
Clickable images An image where if you click on it you activate a hypertext link to another web page The format is: <A HREF="http://URL of the web page"><IMG SRC="filename.gif"></A> Places an image tag where normally there would be words entire image is clickable, or active
Image attributes:
Image attributes use the alt attribute to provide alternate text to display when you hover over any image alternate text is especially important for users: browsing with a text-only browser that cannot see and are using audible readers with their browser to surf the web format is <alt=brief description of image> and follows after the IMG SRC tag: <IMG SRC="UpArrow.gif" ALT="Up">
Tables:
Tables very useful for presentation of tabular information Useful to creative HTML authors who use the table tags to present their regular Web pages tables can control page layout
Table format:
Table format <TABLE> <!-- start of table definition --> <CAPTION> caption contents </CAPTION> <!-- caption definition --> <TR> <!-- start of header row definition --> <TH> first header cell contents </TH> <TH> last header cell contents </TH> </TR> <!-end of header row definition --> <TR>
contents </TD> <TD> first row, last cell contents </TD> </TR> <!-- end of first row definition --> <TR> <!-- start of last row definition --> <TD> last row, first cell contents </TD> <TD> last row, last cell contents </TD> </TR> <!-- end of last row definition --> </TABLE> <!-- end of table definition -->
XML:
XML acronym for Extensible Markup Language a set of rules published by the W3C (World Wide Web Consortium) for building new languages languages in question are not written or spoken they're intended to simplify information sharing among software and humans languages, and the documents in which they're "written," share common characteristics XML delimits blocks of content with intelligible, structure-defining markup to add meaning to the content
XML documents:
XML documents add meaning with plain-text contents scatters little verbal signposts among the content impose a structure which is immediately understandable even if what is being structured is not obvious signposts are called markup special characters come into play no XML document does not include the most important characters the <, >, and / (less-than, greater-than, and slash)
XML example:
XML example the markup is in boldface between and angle brackets: <sentence><clause>Benedict Arnold didn<punctuation type="apostrophe"/> cross the Delaware<punctuation type="semi-colon"/></clause><clause>he crossed his country<punctuation type="period"/></clause></sentence>
Metadata:
Metadata data about data the background information that describes: the content the quality the condition and other appropriate characteristics of the data paper maps contain metadata as part of the map legend For the paper map, metadata is readily apparent and easily transferred between map producers and map users For digital map data, metadata development and maintenance often requires a more conscious effort on the part of data producers and the chain of users who may modify the data
Questions?:
Questions?