Premium Essay

It237 - Week 6 - Day 4 - Checkpoint Quick Check

In:

Submitted By wallym83
Words 505
Pages 3
CheckPoint: Quick Check

The tag used to insert a image is <img> and this tag embeds an image in an HTML page. If you notice that the images are not technically inserted into an HTML page, images are linked to HTML pages. The <img> tag creates a holding space for the referenced image. The <img> tag has two required attributes: src and alt. In HTML the <img> tag has no end tag. In XHTML the <img> tag must be properly closed.
An example could be: <img src="url" alt="some_text"/>

The tag that represents Bold text is <b>. And by adding this to your code will bold anything within the tag.

An example could look like this: <b> Welcome to the home of great discounts </b>. And would show on your page like this: Welcome to the home of great discounts

The tag to link a page to another one is <a href=” “> </a>. For this to work is to have all of the pages you want to use in the same folder with proper titles to link in to the other pages. Most have a index.html and all other pages have to have .html at the end of the title for it to work as well.

An example of this could be: <a href=”aboutus.html”>About us</a>

External CSS is a file that contains only CSS code and is saved with a .css file extension. In your HTML you will use the <link> not the <style> tag to insert the style sheet. The code would look like this:

Body { background-color: gray;} P { color: blue;} H3 { color: wite;}

So the code in the HTML would look something like:
<html>
<head>
<link rel="stylesheet" type="text/css" href="test.css" />
</head>
<body>
<h3> A White Header </h3>
<p> This paragraph would be in blue font. The background color for this page would be gray because we changed it with the CSS style sheet! </p>
</body>

Similar Documents

Premium Essay

Course Design Guide It/237

...into the student website to view this document. Instructor policies: This document is posted in the Course Materials forum. University policies are subject to change. Be sure to read the policies at the beginning of each class. Policies may be slightly different depending on the modality in which you attend class. If you have recently changed modalities, read the policies governing your current class modality. Course Materials Bojack, H. (2010). New perspectives on blended HTML, XHTML, and CSS: Introductory (2nd ed). Mason, OH: Cengage Learning. Gosselin, D. (2011). JavaScript (5th ed.). Mason, OH: Cengage Learning. Software Dreamweaver CS5 provided through Toolwire ® ® All electronic materials are available on the student website. Week One: Introduction to HTML and XHTML Details Objectives 1.1 Identify basic HTML tags and attributes. 1.2 Compare basic XHTML tags and attributes to DHTML and HTML. 1.3 Explain the importance of viewing and testing markup code in various web browsers. 1.4 Develop HTML code that displays content...

Words: 3465 - Pages: 14

Premium Essay

Syllabus

...------------------------------------------------- Course Syllabus IT237 Intro to Web Design II Course Start Date: 05/09/2011 Course End Date: 07/10/2011                   Please print a copy of this syllabus for handy reference. Whenever there is a question about what assignments are due, please remember this syllabus is considered the ruling document. Copyright Copyright ©2009 by University of Phoenix. All rights reserved. University of Phoenix© is a registered trademark of Apollo Group, Inc. in the United States and/or other countries. Microsoft©, Windows©, and Windows NT© are registered trademarks of Microsoft Corporation in the United States and/or other countries. All other company and product names are trademarks or registered trademarks of their respective companies. Use of these marks is not intended to imply endorsement, sponsorship, or affiliation. Edited in accordance with University of Phoenix© editorial standards and practices. Facilitator Information                                                                                                       Robert McBride robmcbride@email.phoenix.edu (University of Phoenix) mcbriro@gmail.com (Personal) 405-406-4359 (CST) Facilitator Availability I am available from 9 a.m.-9 p.m. Central Time on most days, but I attempt to reserve Sunday for my family. On Saturdays, I tend to be online in the morning only. If these times are not convenient for you, please let me know. I will...

Words: 4497 - Pages: 18