Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML Part 4

Size: px
Start display at page:

Download "Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML Part 4"

Transcription

1 Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML 4.01 Version: 4.01 Transitional Hypertext Markup Language is the coding behind web publishing. In this tutorial, basic knowledge of HTML will be covered so that the web designer can look at the source code and be able to find problem areas or add code as needed in order to improve the web design. ACTIVITY 1 GETTING STARTED In this activity, you will become familiar with: Setting Up Folders Using Notepad Using Basic Elements Declaring Doc Type Information Inserting Title Tags Saving HTML Pages Previewing in a Browser Setting Up Folders 1. With your cursor, browse to the place where you intend to save the solutions for these activities. Create a folder named html. 2. Create a subfolder within that folder named images. Using Notepad Open notepad on your computer. If you are using Windows XP, go to Start > All Programs > Accessories > Notepad. Avoid using software to create the basic file that will place other codes in the file. Using Basic Elements 1. In the open notepad file, key <html>[enter]</html>. Note that there are two types of elements: a container element and an empty element. These are container elements as they bracket other elements between two tags. They contain a start and an end tag. The end tag is different than the start tag because it contains a forward slash. Also, placing a hard return or entering between the elements does not show in a browser. It is a good idea to keep them on separate lines to organize your coding so that it is easier to find where to place new codes and also easier to find mistakes.

2 Unit 5 Web Publishing Systems Page 2 of 13 Spacing between elements also does not show in a browser. In order to add spaces in your document, you must have specific codes. In summary, the browser ignores spaces, tabs, and hard returns. 2. Place your cursor between the start html tag and the end html tag. Press Enter, then key <head>[enter]</head>. These tags contain characteristics of the document. Examples of these characteristics are the title, style sheets, and meta data. 3. Place your cursor after the end Start tag. Press Enter, then key <body>[enter]</body>. Anything within these elements is what will be displayed in the browser. Declaring Doc Type Information Key the following to declare the document type: <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN This statement should be keyed above everything else in the document. Enter after keying the statement so that the start tag for html starts on a separate line. Avoid running codes together. The statement makes a declaration that the coding in this file is compatible with transitional HTML The other two doc types could be strict or frameset. In this tutorial, you will use transitional HTML. Inserting Title Tags 1. Although the html, head, and body tags that were keyed earlier are optional, it is recommended to include them for a clear and organized web page. However, the title tag is not an optional tag in the document. 2. Place your cursor within the start head and end head tags. Key <title></title>. It is a good idea to key the start and end tags first before keying any data within the tags. This helps to ensure that you have not left off the ending tag which is a common mistake. 3. Place your cursor within the start and end tags for title and key Basic HTML Tutorials.. This keyed text is what the person visiting your web page will see in the top left corner of the browser. If there is no text within these tags, it will show Untitled page. Remember that any text placed in the head tags does not show up on the web page itself. It is a characteristic describing the web page. This shows up at the top of the browser, but it does not appear on the web page. Saving HTML Pages From the menu bar, choose File > Save As. Browse to your location for your solutions and double click the html folder you created earlier. Key basic_tutorial.html. Be sure to key.html as a part of the document name. It will also work by keying.htm; however, the.html file name appears to be compatible with more browsers.

3 Unit 5 Web Publishing Systems Page 3 of 13 Previewing in a Browser 1. You can open a browser and, from the menu, choose File > Open. You can also open an html file directly from the folder by double clicking the file name. If it contains an HTM or HTML extension, it will automatically open for previewing in your default browser. Open your basic_tutorial file for previewing. Note there is nothing showing in the document itself; however, the title that you gave the page should be showing in the top left corner of the browser s title bar. 2. You can not edit an HTML file from within the browser. In order to edit the file, after previewing, you should close the file, then reopen basic_tutorial within notepad. You need to open notepad first then from the menu bar, choose File > Open. Browse to the location of your saved solutions and double click the html folder then double click the basic_tutorial file. You can also right click on the file name and choose Open With then choose Notepad. 3. Many coders like to keep both the browser window open with the preview and the notepad open so they can easily preview changes to their coding. If you choose to do this, be sure that you always save the notepad file once you have made a change and then when you toggle back to your browser, always refresh the browser so it will reflect the change. You also want to be sure that you are previewing the correct file. If you resaved the file with a different name, it will not necessarily be the correct preview. Refresh button in Internet Explorer 6 ACTIVITY 1 MINI-PROJECT Start a Web Page using HTML 1. Create a folder in your solutions folder named template. Create a sub folder in that folder named images. 2. Open notepad and key the basic three container elements for html, head, and body. 3. Key a start and end tag for title in the appropriate place. Title the page This can be used as a template. 4. Include a declaration of doc type for transitional HTML 4.01 in the appropriate place. 5. Save the file as template.html. 6. Preview your work in your default browser. The following criteria should be met: Folder and subfolder are created as instructed. Basic container elements are included in notepad with start and end tags as appropriate. Title tag is keyed accurately with no errors in title. Doc type declaration is accurate. File is saved as template.html.

4 Unit 5 Web Publishing Systems Page 4 of 13 ACTIVITY 2 ADDING ELEMENTS AND ATTRIBUTES In this activity, you will become familiar with: Using Meta Elements Using Align Text Inserting Formatting Elements Creating a Bulleted List Creating Numbered Lists Inserting a Horizontal Rule Creating Hypertext Links Using Meta Elements 1. Open basic_tutorial within notepad for editing. There are three primary meta elements that you will learn to add to your document in this tutorial: specifying the document set, description of the web page, and keywords. 2. Place your cursor at the end of the start head tag, within the head element. Press Enter and key <meta http-equiv= Content-Type content= text/html; charset=iso >. This statement is necessary to specify what language is being used on the web page. 3. The next meta element is the description. When a search engine is used to locate web pages, the description shows up in the return search. This description content should do a good job of describing concisely what will be found in the web page. Below the title tags, key <meta name= description content= This web page contains links to basic tutorials for using HTML coding to design a web page effectively. Get your tips and tricks for quick, effective web design here! >. 4. Note that in the above keyed text, the attributes are in quotation marks. For instance, the first attribute is description which tells the name of this meta tag. The next quoted material is the specific content that will be found in the description of the web page. This information is within the head which means it does not show on the web page itself, but it is a characteristic of the document. 5. The third meta element that you will use is keywords. Keywords are important in web viewers being able to locate your web page. You want to include as many key words as possible that a person may use to locate your web page. Below the meta description, Enter and key <meta name= keywords content= tutorials, html, 4.01, transitional, elements, attributes, designing web pages, coding >. 6. From the menu bar, choose File > Save or use the shortcut Ctrl + S.

5 Unit 5 Web Publishing Systems Page 5 of 13 Using Align Text 1. Place your cursor at the end of the start body tag. Press Enter. 2. Key <h1 align= center >Welcome to Basic Tutorials!</align></h1>. (In the beginning stages of coding, you may want to save your file each time you add something new, toggle to your browser, refresh the browser, and see how it looks in the browser.) 3. The statement above should have set a heading level 1. If you are familiar with word processing styles then you may already be somewhat familiar with the heading levels. There are six heading levels in HTML. You may want to practice changing the 1 to another number between 2 and 6 to see the difference. You can also change the attribute center to right or justify to see the difference. Once you have experimented, change the coding back to that you were asked to key in Instruction Save changes. Inserting Formatting Elements 1. Press Enter and key the following below the Welcome title: <p align="justify">the Digital Multimedia textbook includes many great ideas for effective web design. Use the tutorial provided with your textbook to learn basic web editing before proceeding to learning a web editing software such as Dreamweaver. This will give you more flexibility in designing web pages as well as allowing you to troubleshoot problems easier.</align>. Note the paragraph tag <p>. All text should contain html tags. You cannot use additional paragraph tags together to add vertical spacing. A paragraph element can be an empty element, in that it does not require an ending tag. 2. Click in front of Digital in the text and key <i>. Click after Multimedia and key </i>. This places the name of the textbook in italics. 3. Click before great and key <b>. Click after great and key </b>. Be sure you always include the forward slash in the ending tag. Try leaving it out and see what happens so if you accidentally leave it out, you will recognize the problem. 4. Underline Dreamweaver by placing <u> before and </u> after the text. 5. Save changes. Creating a Bulleted List 1. At the end of the paragraph, press ENTER and key two line break tags <br/>. This tag includes the start and end tag together. Only a few tags work with in this manner. You do not have to type the slash and include the ending in the line break; however, it helps to remember that an ending tag is not needed. 2. A bulleted list is also called an unordered list. After the line breaks, key <ul>[enter]</ul>.

6 Unit 5 Web Publishing Systems Page 6 of Place your cursor on the line underneath the start code <ul>. Key <li>why learn the language of HTML?. The <li> code does not need an ending tag. 4. On the next line key or copy and paste the <li> code again. Key Why learn effective web design?. 5. Key <li>why learn a web editing software?. Creating Numbered Lists 1. After the </ul> code, key two line breaks. 2. Select and copy the code and text from <ul> to </ul>. 3. Paste the copied text below the line breaks. Change the <ul> to <ol>. Change the </ul> to </ol>. On the lines with <li> code, replace the current text with the following. <li>learn HTML codes. <li>learn to effectively design web pages. <li>learn a web editing software such as Dreamweaver. 4. Save, refresh, and preview in the browser. Inserting a Horizontal Rule 1. Insert a horizontal line that is red in color by keying the following below the ending code for ordered list: <hr color="red">. 2. Note that there are only sixteen colors that can be identified with color name. Most colors must be identified with hexadecimal numbering. For more information on this topic, search the Internet. 3. Save, refresh, and preview the web page in the browser. Creating Hypertext Links 1. An anchor element adds hypertext links with text. It can be used to link external web pages, internal pages, and On the line below the code for the horizontal rule, key <a href=" Bean's Web Site</a><br />. The <a href adds the anchor element. In parenthesis the exact web site address, or named anchor or address should be keyed. After the end tag, the text that displays on the Web page should be keyed. End the Anchor element with a closing anchor tag. In this case, you also added a line break so the next link would not be on the same line with the web site address. 3. On the line below the first anchor element, key another anchor element. Key <a href= mailto:kbean@blinn.edu > </a>. 4. Save, refresh the browser, and preview in the browser. Be sure to try the links to make sure they work.

7 Unit 5 Web Publishing Systems Page 7 of Using notepad open template from your solutions folder. Change the title to Home Page. Within the body elements key <a href= basic_tutorial >Basic Tutorial.</a>. This provides a link to another page that you have created. 6. Save as index.html. All first pages (home pages) should be named index. This is the first page that is loaded when someone accesses your site. 7. Save, refresh the browser, and preview in the browser. Be sure to try the link. ACTIVITY 2 MINI-PROJECT Edit and Create a Template 1. Open notepad then open template that you previously saved within notepad. 2. Create similar content that is generic in nature demonstrating the skills learned in this activity. 3. Save the file, refresh the browser, and preview the file in the browser. The following criteria should be met: Meta elements for specification of language used, description, and keywords were added. Information in description and keywords explained what these were used for instead of a specific description or keywords. A title was created using a heading tag and an align tag. The title can be Replace This With Title. Demonstrated use of paragraph tag, underline, bold, and italics. Generic bulleted list was created. Generic numbered list was created. A horizontal rule was created with color added. A hyperlink to a web page and a hyperlink to were created

8 Unit 5 Web Publishing Systems Page 8 of 13 ACTIVITY 3 BASIC PAGE FORMATTING In this activity, you will become familiar with: Changing Font Sizes Specifying Font List Working With Colors Using A Background Image Floating Images Changing Font Sizes 1. Open notepad and open template within notepad. From the menu bar, choose File > Save As. Browse to your solutions folder. Double click the html folder. Save as tips.html. 2. Select all text between the body tags and remove the text. 3. Select the information within the title tags. Overtype with Great tips for web sites. 4. Place your cursor after the start body tag. Press the Enter key. Key Top 10 Tips for Web Design. 5. Add start and end tags for paragraph with an align attribute of center. 6. Before the title Top 10 Tips for Web Design, key a start font tag: <font>. After the title, key the ending font tag: </font>. 7. Place your cursor in front of the ending bracket of the start tag. Space then key size= 5. The font tag performs several functions, but in this case, it performs the function of changing the size of the font. This is an absolute font size. There are 7 absolute font sizes with 1 being the smallest and 7 being the largest. Absolute font size 3 is comparable to size 12 font in word processing. 8. The completed line should look like the following: <p align="center"><font size="5">top 10 Tips for Web Design</font></p> Specifying Font Lists 1. Click the cursor after <font size= 5. Press the space bar then key face= Geneva, Verdana, Arial. 2. Fonts should include at least three fonts in the list. In the case of the list you just included, if Geneva was not available on the viewer s computer then it would default to Verdana. If neither of those were available, then it would default to Arial. Most computers should have Arial and/or Times New Roman on their computer so one of these fonts should be included as the third in the list. 3. Save, refresh the browser, and preview the web page in the browser.

9 Unit 5 Web Publishing Systems Page 9 of 13 Working With Colors 1. Change the color of the text to blue. After the font list, press the space bar and key color= blue. 2. Colors for background, for text of the entire page, unvisited links, visited links, and activated links can be changed by placing the appropriate attribute within the body tag. Place your cursor directly before the right bracket on the start tag of body. Key bgcolor= ffffcc. This changes the background color of the page to a light yellow. This is using the hexadecimal code for light yellow. Using A Background Image 1. Browse to your student data files and locate the file bubbles. Copy and paste the file into the images folder in the html folder. 2. Open notepad, then open basic_tutorial within notepad to edit the html file. 3. Place the cursor in front of the right bracket in the start body tag. Key background= images/bubbles.jpg. Note that the image name must be exact as well as the exact location. The word images is included in the path, because it is within the html folder in the images folder. Be very careful when including images on your web page. They must be keyed with exact names and paths, and they must be included within the folders. You may also notice that you want to be careful with using images as backgrounds. They can overpower the text and take away from the message on your web page. Floating Images 1. Place your cursor directly in front of The Digital Multimedia Key <img src= images/pencils.jpg >. The image element does not need a closing tag. It is an empty element. Be sure that the pencils image has been moved from your student data files to the folder that you have specified as the source. 3. Save, refresh the browser, and preview in the browser. 4. Directly after the quotation mark ending the image name, key align= right. This should float the image to the right side. 5. Save, refresh the browser, and preview in the browser. 6. Note that the image is very close to the surrounding text. Toggle back to notepad and key hspace= 10 after the align right code. This adds horizontal space between the image and the text. You can do the same to add vertical space (vspace) if needed. 7. After the horizontal space attribute, key alt= Example of image with right alignment..

10 Unit 5 Web Publishing Systems Page 10 of 13 ACTIVITY 3 MINI-PROJECT Building a Template 1. Open notepad and open template from within notepad. 2. Place a font element in the appropriate place in the file. Add a generic title with an attribute font size in the font element. 3. Specify a font list of at least three font names with the last one being Arial or Times New Roman. 4. Add color to the title. 5. Locate a background image from the Internet. Add an image source. 6. Add an image of your choice with alignment. 7. Save the file, refresh the browser, and preview the file in the browser. The following criteria should be met: Font elements are in the appropriate place with a change of size. Font list contains three font faces with at least one being Arial or Times New Roman. Color is added to the title. Background image added appropriately. Image added with appropriate alignment. File saved. ACTIVITY 4 TABLES In this activity, you will become familiar with: Inserting Tables Formatting Tables Inserting Tables 1. Open notepad. Browse to your student data files and double click tables to open it within notepad. 2. Select the text within the title tags and key Learning Tables. 3. Click after the start body tag. Press Enter and key <table>. Press Enter and key </table>. 4. Place your cursor after the start table tag and press Enter. Key <tr> then press Enter and key </tr>. This creates a row. Each row must contain a pair of table data tags to create the row. Click after the start table row tag and press Enter. Key <td></td>. This can be on the same row. Key Row 1 Column 1 within the table data tags. 5. Select everything between <tr> and </tr>. From the menu bar choose Edit > Copy or press Ctrl + C.

11 Unit 5 Web Publishing Systems Page 11 of Place your cursor below the ending table row tag. From the menu bar, choose Edit > Paste. Change Row 1 to Row Save the file, refresh the browser, and preview the file in the browser. 8. Copy the table data row and paste another one right below the first one. Change the Column number to Repeat this for the other table data row, changing Row to 2 and Column to Copy and paste the table row until there are 4 rows and 2 columns in the table. Completed Code for Table Formatting Tables 1. Place your cursor in front of the right bracket for the start tag for table. Key border= In front of the border attributes, key an align= center attribute. 3. Click after the border attribute and add a width= 75% attribute. 4. Place your cursor before the right bracket in the start tag for the first table data cell. Key width= 75% to change the width for that entire column. 5. Within the start table tag, add a bgcolor= yellow. 6. Save the file, refresh the browser, and preview the file in the browser.

12 Unit 5 Web Publishing Systems Page 12 of 13 ACTIVITY 4 MINI-PROJECT Create a Table of Local Businesses 1. Set up a folder named local with a subfolder named images. 2. Create a 2-column, 4 row table. In the first column, input the name of four local businesses that you think employee the most people in the area. In the second column, enter the number of employees. (This can be found by looking on a city Web site or a Chamber of Commerce site. If there are no sites available, call or visit the Chamber of Commerce.) 3. Demonstrate formatting of tables by changing the background color, centering the table, adding a visible border, and changing the table and column width. The following criteria should be met: Table is created appropriately with accurate code. Information input accurately into the columns and rows. Background color is changed on the table. Table is centered horizontally. Visible border is added to the table. Table width and column width are changed.

13 Unit 5 Web Publishing Systems Page 13 of 13 PART 4 SIMULATION Creating Web Pages with HTML 1. Create a folder named web_page. Create a subfolder named images. 2. Using notepad, create a web page titled What I Learned About HTML. 3. Demonstrate an example of each of the codes you learned in Activities 1-3. Begin by keying the basic elements, doc type information, and the three meta elements that were covered. Use either a bulleted or numbered list to list at least 5 things you learned in HTML coding. You may use any image to demonstrate inserting an image. Be sure you include the image in the images folder. Use your own address at the bottom of the page to demonstrate linking of Save as index.html. 5. Open notepad and open your template from the solutions folder. Save as colors.html. Change the title to Hexadecimal. 6. Insert a 2-column table with 5 rows. Search the Internet and locate the hexadecimal number for five of your favorite colors. Key the name of the color in the first column and the code number in the second column. 7. Add a visible border, table and row width changes, background color change, and any other formatting desired to the table 8. Save the file. The following criteria should be met: Basic elements, doc type information, and the three meta elements are included accurately. File is saved as instructed. Example of skills learned in formatting and adding of elements are included. Page formatting skills are demonstrated. Image is inserted and saved in images folder. All elements and attributes on the page work appropriately. Table is coded accurately for design and format. No entry errors found in the table. Colors page is saved in the appropriate place with the appropriate name and title.

CSC 121 Computers and Scientific Thinking

CSC 121 Computers and Scientific Thinking CSC 121 Computers and Scientific Thinking Fall 2005 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language

More information

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML)

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML specifies formatting within a page using tags in its

More information

HTML. Hypertext Markup Language. Code used to create web pages

HTML. Hypertext Markup Language. Code used to create web pages Chapter 4 Web 135 HTML Hypertext Markup Language Code used to create web pages HTML Tags Two angle brackets For example: calhoun High Tells web browser ho to display page contents Enter with

More information

A Balanced Introduction to Computer Science, 3/E

A Balanced Introduction to Computer Science, 3/E A Balanced Introduction to Computer Science, 3/E David Reed, Creighton University 2011 Pearson Prentice Hall ISBN 978-0-13-216675-1 Chapter 2 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

Web Page Creation Part I. CS27101 Introduction to Web Interface Design Prof. Angela Guercio

Web Page Creation Part I. CS27101 Introduction to Web Interface Design Prof. Angela Guercio Web Page Creation Part I CS27101 Introduction to Web Interface Design Prof. Angela Guercio Objective In this lecture, you will learn: What HTML is and what XHTML is How to create an (X)HTML file The (X)HTML

More information

c122jan2714.notebook January 27, 2014

c122jan2714.notebook January 27, 2014 Internet Developer 1 Start here! 2 3 Right click on screen and select View page source if you are in Firefox tells the browser you are using html. Next we have the tag and at the

More information

Creating A Web Page. Computer Concepts I and II. Sue Norris

Creating A Web Page. Computer Concepts I and II. Sue Norris Creating A Web Page Computer Concepts I and II Sue Norris Agenda What is HTML HTML and XHTML Tags Required HTML and XHTML Tags Using Notepad to Create a Simple Web Page Viewing Your Web Page in a Browser

More information

11. HTML5 and Future Web Application

11. HTML5 and Future Web Application 11. HTML5 and Future Web Application 1. Where to learn? http://www.w3schools.com/html/html5_intro.asp 2. Where to start: http://www.w3schools.com/html/html_intro.asp 3. easy to start with an example code

More information

introduction to XHTML

introduction to XHTML introduction to XHTML XHTML stands for Extensible HyperText Markup Language and is based on HTML 4.0, incorporating XML. Due to this fusion the mark up language will remain compatible with existing browsers

More information

Creating Web Pages Using HTML

Creating Web Pages Using HTML Creating Web Pages Using HTML HTML Commands Commands are called tags Each tag is surrounded by Some tags need ending tags containing / Tags are not case sensitive, but for future compatibility, use

More information

HTML OBJECTIVES WHAT IS HTML? BY FAITH BRENNER AN INTRODUCTION

HTML OBJECTIVES WHAT IS HTML? BY FAITH BRENNER AN INTRODUCTION HTML AN INTRODUCTION BY FAITH BRENNER 1 OBJECTIVES BY THE END OF THIS LESSON YOU WILL: UNDERSTAND HTML BASICS AND WHAT YOU CAN DO WITH IT BE ABLE TO USE BASIC HTML TAGS BE ABLE TO USE SOME BASIC FORMATTING

More information

Web Publishing Basics I

Web Publishing Basics I Web Publishing Basics I Jeff Pankin Information Services and Technology Contents Course Objectives... 2 Creating a Web Page with HTML... 3 What is Dreamweaver?... 3 What is HTML?... 3 What are the basic

More information

Web Design 101. What is HTML? HTML Tags. Web Browsers. <!DOCTYPE html> <html> <body> <h1>my First Heading</h1> <p>my first paragraph.

Web Design 101. What is HTML? HTML Tags. Web Browsers. <!DOCTYPE html> <html> <body> <h1>my First Heading</h1> <p>my first paragraph. What is HTML? Web Design 101 HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language à A markup language is a set of markup tags The tags describe

More information

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS MOST TAGS CLASS Divides tags into groups for applying styles 202 ID Identifies a specific tag 201 STYLE Applies a style locally 200 TITLE Adds tool tips to elements 181 Identifies the HTML version

More information

4 HTML Basics YOU WILL LEARN TO WHY IT MATTERS... CHAPTER

4 HTML Basics YOU WILL LEARN TO WHY IT MATTERS... CHAPTER CHAPTER 4 HTML Basics YOU WILL LEARN TO Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create lists

More information

I-5 Internet Applications

I-5 Internet Applications I-5 Internet Applications After completion of this unit, you should be able to understand and code a webpage that includes pictures, sounds, color, a table, a cursor trail, hypertext, and hyperlinks. Assignments:

More information

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5 Name Date Final Exam Prep Questions Worksheet #1 1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5 2. Which of the following

More information

How the Internet Works

How the Internet Works How the Internet Works The Internet is a network of millions of computers. Every computer on the Internet is connected to every other computer on the Internet through Internet Service Providers (ISPs).

More information

The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data.

The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data. Review The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data. It is not the internet! It is a service of the internet.

More information

This document provides a concise, introductory lesson in HTML formatting.

This document provides a concise, introductory lesson in HTML formatting. Tip Sheet This document provides a concise, introductory lesson in HTML formatting. Introduction to HTML In their simplest form, web pages contain plain text and formatting tags. The formatting tags are

More information

HTML. Mohammed Alhessi M.Sc. Geomatics Engineering. Internet GIS Technologies كلية اآلداب - قسم الجغرافيا نظم المعلومات الجغرافية

HTML. Mohammed Alhessi M.Sc. Geomatics Engineering. Internet GIS Technologies كلية اآلداب - قسم الجغرافيا نظم المعلومات الجغرافية HTML Mohammed Alhessi M.Sc. Geomatics Engineering Wednesday, February 18, 2015 Eng. Mohammed Alhessi 1 W3Schools Main Reference: http://www.w3schools.com/ 2 What is HTML? HTML is a markup language for

More information

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space. HTML Summary Structure All of the following are containers. Structure Contains the entire web page. Contains information

More information

A HTML document has two sections 1) HEAD section and 2) BODY section A HTML file is saved with.html or.htm extension

A HTML document has two sections 1) HEAD section and 2) BODY section A HTML file is saved with.html or.htm extension HTML Website is a collection of web pages on a particular topic, or of a organization, individual, etc. It is stored on a computer on Internet called Web Server, WWW stands for World Wide Web, also called

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

This booklet is knowledge of. a web page. of a web page find what you. you want to. SiteSell offers. Introduction

This booklet is knowledge of. a web page. of a web page find what you. you want to. SiteSell offers. Introduction From www.basic computerskills.com/ Thank you for downloading this freee Booklet. This booklet is intended for people, who want to start out with their own web site or just want to get the basic knowledge

More information

DREAMWEAVER QUICK START TABLE OF CONTENT

DREAMWEAVER QUICK START TABLE OF CONTENT DREAMWEAVER QUICK START TABLE OF CONTENT Web Design Review 2 Understanding the World Wide Web... 2 Web Browsers... 2 How Browsers Display Web pages... 3 The Web Process at Sacramento State... 4 Web Server

More information

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab.

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab. Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM 5049 Advanced Internet Technology Lab Lab # 1 Eng. Haneen El-masry February, 2015 Objective To be familiar with

More information

What You Will Learn Today

What You Will Learn Today CS101 Lecture 03: The World Wide Web and HTML Aaron Stevens 23 January 2011 1 What You Will Learn Today Is it the Internet or the World Wide Web? What s the difference? What is the encoding scheme behind

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Chapter 2 Creating and Editing a Web Page

Chapter 2 Creating and Editing a Web Page Chapter 2 Creating and Editing a Web Page MULTIPLE CHOICE 1. is a basic text editor installed with Windows that you can use for simple documents or for creating Web pages using HTML. a. Microsoft Word

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

Management Information Systems

Management Information Systems Management Information Systems Hands-On: HTML Basics Dr. Shankar Sundaresan 1 Elements, Tags, and Attributes Tags specify structural elements in a document, such as headings: tags and Attributes

More information

Modify cmp.htm, contactme.htm and create scheduleme.htm

Modify cmp.htm, contactme.htm and create scheduleme.htm GRC 175 Assignment 2 Modify cmp.htm, contactme.htm and create scheduleme.htm Tasks: 1. Setting up Dreamweaver and defining a site 2. Convert existing HTML pages into proper XHTML encoding 3. Add alt tags

More information

Creating Web Pages. Getting Started

Creating Web Pages. Getting Started Creating Web Pages Getting Started Overview What Web Pages Are How Web Pages are Formatted Putting Graphics on Web Pages How Web Pages are Linked Linking to other Files What Web Pages Are Web Pages combine

More information

All Creative Designs. Basic HTML for PC Tutorial Part 1 Using MS Notepad (Version May 2013) My First Web Page

All Creative Designs. Basic HTML for PC Tutorial Part 1 Using MS Notepad (Version May 2013) My First Web Page All Creative Designs Basic HTML for PC Tutorial Part 1 Using MS Notepad (Version May 2013) My First Web Page Step by step instructions to build your first web page Brief Introduction What is html? The

More information

FRONTPAGE STEP BY STEP GUIDE

FRONTPAGE STEP BY STEP GUIDE IGCSE ICT SECTION 15 WEB AUTHORING FRONTPAGE STEP BY STEP GUIDE Mark Nicholls ICT lounge P a g e 1 Contents Introduction to this unit.... Page 4 How to open FrontPage..... Page 4 The FrontPage Menu Bar...Page

More information

Authoring World Wide Web Pages with Dreamweaver

Authoring World Wide Web Pages with Dreamweaver Authoring World Wide Web Pages with Dreamweaver Overview: Now that you have read a little bit about HTML in the textbook, we turn our attention to creating basic web pages using HTML and a WYSIWYG Web

More information

HTML Overview. With an emphasis on XHTML

HTML Overview. With an emphasis on XHTML HTML Overview With an emphasis on XHTML What is HTML? Stands for HyperText Markup Language A client-side technology (i.e. runs on a user s computer) HTML has a specific set of tags that allow: the structure

More information

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page Creating a Web Page using Mozilla Composer- A Free Open Source Application Emily Hebard IT Lab School of Information University of Texas at Austin Spring 2003 Objectives Orient to the Mozilla Composer

More information

CSCE 101. Creating Web Pages with HTML5 Applying style with CSS

CSCE 101. Creating Web Pages with HTML5 Applying style with CSS CSCE 101 Creating Web Pages with HTML5 Applying style with CSS Table of Contents Introduction... 1 Required HTML Tags... 1 Comments... 2 The Heading Tags... 2 The Paragraph Tag... 2 The Break Tag... 3

More information

UNIT 2. Creating Web Pages with Links, Images, and Formatted Text

UNIT 2. Creating Web Pages with Links, Images, and Formatted Text UNIT 2 Creating Web Pages with Links, Images, and Formatted Text DAY 1 Types of Links! LESSON LEARNING TARGETS I can describe hyperlink elements and their associated terms. I can describe the different

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information

Adobe Dreamweaver CS5/6: Learning the Tools

Adobe Dreamweaver CS5/6: Learning the Tools Adobe Dreamweaver CS5/6: Learning the Tools Dreamweaver is an HTML (Hypertext Markup Language) editor, authoring tool, and Web site management tool. Dreamweaver is a WYSIWYG (what you see is what you get)

More information

Introduction, Notepad++, File Structure, 9 Tags, Hyperlinks 1

Introduction, Notepad++, File Structure, 9 Tags, Hyperlinks 1 Introduction, Notepad++, File Structure, 9 Tags, Hyperlinks 1 Introduction to HTML HTML, which stands for Hypertext Markup Language, is the standard markup language used to create web pages. HTML consists

More information

Downloads: Google Chrome Browser (Free) - Adobe Brackets (Free) -

Downloads: Google Chrome Browser (Free) -   Adobe Brackets (Free) - Week One Tools The Basics: Windows - Notepad Mac - Text Edit Downloads: Google Chrome Browser (Free) - www.google.com/chrome/ Adobe Brackets (Free) - www.brackets.io Our work over the next 6 weeks will

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

Lab 4 CSS CISC1600, Spring 2012

Lab 4 CSS CISC1600, Spring 2012 Lab 4 CSS CISC1600, Spring 2012 Part 1 Introduction 1.1 Cascading Style Sheets or CSS files provide a way to control the look and feel of your web page that is more convenient, more flexible and more comprehensive

More information

It is possible to create webpages without knowing anything about the HTML source behind the page.

It is possible to create webpages without knowing anything about the HTML source behind the page. What is HTML? HTML is the standard markup language for creating Web pages. HTML is a fairly simple language made up of elements, which can be applied to pieces of text to give them different meaning in

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

More information

Introduction to using HTML to design webpages

Introduction to using HTML to design webpages Introduction to using HTML to design webpages #HTML is the script that web pages are written in. It describes the content and structure of a web page so that a browser is able to interpret and render the

More information

Web Design and Development ACS Chapter 3. Document Setup

Web Design and Development ACS Chapter 3. Document Setup Web Design and Development ACS-1809 Chapter 3 Document Setup 1 Create an HTML file At their very core, HTML files are simply text files with two additional feature.htm or.html as file extension name They

More information

Web Development & Design Foundations with XHTML. Chapter 2 Key Concepts

Web Development & Design Foundations with XHTML. Chapter 2 Key Concepts Web Development & Design Foundations with XHTML Chapter 2 Key Concepts Learning Outcomes In this chapter, you will learn about: XHTML syntax, tags, and document type definitions The anatomy of a web page

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

Part 1: HTML Language HyperText Make-up Language

Part 1: HTML Language HyperText Make-up Language Part 1: HTML Language HyperText Make-up Language 09/08/2010 1 CHAPTER I Introduction about Web Design 2 Internet and World Wide Web The Internet is the world s largest computer network The Internet is

More information

Attributes & Images 1 Create a new webpage

Attributes & Images 1 Create a new webpage Attributes & Images 1 Create a new webpage Open your test page. Use the Save as instructions from the last activity to save your test page as 4Attributes.html and make the following changes:

More information

Announcements. Paper due this Wednesday

Announcements. Paper due this Wednesday Announcements Paper due this Wednesday 1 Client and Server Client and server are two terms frequently used Client/Server Model Client/Server model when talking about software Client/Server model when talking

More information

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 EDITOR GUIDE Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 1 Button Functions: Button Function Display the page content as HTML. Save Preview

More information

STD 7 th Paper 1 FA 4

STD 7 th Paper 1 FA 4 STD 7 th Paper 1 FA 4 Choose the correct option from the following 1 HTML is a. A Data base B Word Processor C Language D None 2 is a popular text editor in MS window A Notepad B MS Excel C MS Outlook

More information

Eng 110, Spring Week 03 Lab02- Dreamwaver Session

Eng 110, Spring Week 03 Lab02- Dreamwaver Session Eng 110, Spring 2008 Week 03 Lab02- Dreamwaver Session Assignment Recreate the 3-page website you did last week by using Dreamweaver. You should use tables to control your layout. You should modify fonts,

More information

COMPUTER APPLICATIONS IN BUSINESS FYBMS SEM II

COMPUTER APPLICATIONS IN BUSINESS FYBMS SEM II CHAPTER 1: HTML 1. What is HTML? Define its structure. a. HTML [Hypertext Markup Language] is the main markup language for creating web pages and other information that can be displayed in a web browser.

More information

Table of Contents. Look for more information at

Table of Contents. Look for more information at OmniUpd ate @ De Anza Qui ck Guide Table of Contents Login... 2 Logout... 2 OmniUpdate Help Center... 2 Editing and Saving a Page... 3 Publishing... 5 View and Revert to Previously Published Page... 5

More information

Introduction to HTML. SSE 3200 Web-based Services. Michigan Technological University Nilufer Onder

Introduction to HTML. SSE 3200 Web-based Services. Michigan Technological University Nilufer Onder Introduction to HTML SSE 3200 Web-based Services Michigan Technological University Nilufer Onder What is HTML? Acronym for: HyperText Markup Language HyperText refers to text that can initiate jumps to

More information

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21 Table of Contents Chapter 1 Getting Started with HTML 5 1 Introduction to HTML 5... 2 New API... 2 New Structure... 3 New Markup Elements and Attributes... 3 New Form Elements and Attributes... 4 Geolocation...

More information

Computer Applications Final Exam Study Guide

Computer Applications Final Exam Study Guide Computer Applications Final Exam Study Guide Our final exam is based from the quizzes, tests, and from skills we have learned about Hardware, PPT, Word, Excel and HTML during our Computer Applications

More information

Do It Yourself Website Editing Training Guide

Do It Yourself Website Editing Training Guide Do It Yourself Website Editing Training Guide Version 3.0 Copyright 2000-2011 Sesame Communications. All Rights Reserved. Table of Contents DIY Overview 3 What pages are editable using the DIY Editing

More information

FileNET Guide for AHC PageMasters

FileNET Guide for AHC PageMasters ACADEMIC HEALTH CENTER 2 PageMasters have the permissions necessary to perform the following tasks with Site Tools: Application Requirements...3 Access FileNET...3 Login to FileNET...3 Navigate the Site...3

More information

ORB Education Quality Teaching Resources

ORB Education Quality Teaching Resources These basic resources aim to keep things simple and avoid HTML and CSS completely, whilst helping familiarise students with what can be a daunting interface. The final websites will not demonstrate best

More information

ADOBE Dreamweaver CS3 Basics

ADOBE Dreamweaver CS3 Basics ADOBE Dreamweaver CS3 Basics IT Center Training Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu This page intentionally left blank 2 8/16/2011 Contents Before you start with Dreamweaver....

More information

SeaMonkey Composer: Creating Web Pages

SeaMonkey Composer: Creating Web Pages SeaMonkey Composer: Creating Web Pages v.1101 There are many ways to create and modify Web pages to be published on the Web. You can use any text editor such as Notepad to directly enter or modify the

More information

FileNET Guide for AHC PageMasters

FileNET Guide for AHC PageMasters PageMasters have the permissions necessary to perform the following tasks with Site Tools: ACADEMIC HEALTH CENTER 2 Application Requirements...3 Access FileNET...3 Log in to FileNET...3 Navigate the Site...3

More information

HTML and CSS: An Introduction

HTML and CSS: An Introduction JMC 305 Roschke spring14 1. 2. 3. 4. 5. The Walter Cronkite School... HTML and CSS: An Introduction

More information

HTML Hints & Tips. HTML is short for HyperText Markup Language.

HTML Hints & Tips. HTML is short for HyperText Markup Language. Introduction to HTML HTML is short for HyperText Markup Language. It is a formatting language used to specify web page attributes such as headings, paragraphs, lists, tables and text variations. The HTML

More information

Chapter 4. Introduction to XHTML: Part 1

Chapter 4. Introduction to XHTML: Part 1 Chapter 4. Introduction to XHTML: Part 1 XHTML is a markup language for identifying the elements of a page so a browser can render that page on a computer screen. Document presentation is generally separated

More information

Using Dreamweaver 2 HTML

Using Dreamweaver 2 HTML Using Dreamweaver 2 The World Wide Web is based on (Hypertext markup language). Although Dreamweaver is primarily a WYSIWYG editor, it is still worthwhile for Dreamweaver users to be familiar with for

More information

All Creative Designs. Basic HTML for PC Tutorial Part 2 Using MS Notepad Revised Version May My First Web Page

All Creative Designs. Basic HTML for PC Tutorial Part 2 Using MS Notepad Revised Version May My First Web Page All Creative Designs Basic HTML for PC Tutorial Part 2 Using MS Notepad Revised Version May 2013 My First Web Page This tutorial will add backgrounds to the table and body, font colors, borders, hyperlinks

More information

A Brief Introduction to HTML

A Brief Introduction to HTML A P P E N D I X HTML SuMMAry J A Brief Introduction to HTML A web page is written in a language called HTML (Hypertext Markup Language). Like Java code, HTML code is made up of text that follows certain

More information

Creating and Editing a Web Page Using Inline Styles

Creating and Editing a Web Page Using Inline Styles HTML 2 Creating and Editing a Web Page Using Inline Styles Objectives You will have mastered the material in this chapter when you can: Identify elements of a Web page Start Notepad++ and describe the

More information

Glossary. advance: to move forward

Glossary. advance: to move forward Computer Computer Skills Glossary Skills Glossary advance: to move forward alignment tab: the tab in the Format Cells dialog box that allows you to choose how the data in the cells will be aligned (left,

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

AGENDA :: MULTIMEDIA TOOLS :: (1382) :: CLASS NOTES

AGENDA :: MULTIMEDIA TOOLS :: (1382) :: CLASS NOTES CLASS :: 13 12.01 2014 AGENDA SIMPLE CSS MENU W/ HOVER EFFECTS :: The Nav Element :: Styling the Nav :: UL, LI, and Anchor Elements :: Styling the UL and LI Elements TEMPLATE CREATION :: Why Templates?

More information

Creating Web Pages Using Netscape Composer AGENDA FOR THIS WORKSHOP. 1. How does it all work? 2. What do I need to get started at Fairfield?

Creating Web Pages Using Netscape Composer AGENDA FOR THIS WORKSHOP. 1. How does it all work? 2. What do I need to get started at Fairfield? Creating Web Pages Using Netscape Composer AGENDA FOR THIS WORKSHOP 1. How does it all work? 2. What do I need to get started at Fairfield? 3. What is HTML coding? 4. The 10 HTML Tags that you should know.

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

Hyper Text Markup Language HTML: A Tutorial

Hyper Text Markup Language HTML: A Tutorial Hyper Text Markup Language HTML: A Tutorial Ahmed Othman Eltahawey December 21, 2016 The World Wide Web (WWW) is an information space where documents and other web resources are located. Web is identified

More information

CSC Web Programming. Introduction to HTML

CSC Web Programming. Introduction to HTML CSC 242 - Web Programming Introduction to HTML Semantic Markup The purpose of HTML is to add meaning and structure to the content HTML is not intended for presentation, that is the job of CSS When marking

More information

Dreamweaver MX Technical Support Services. Office of Information Technology, West Virginia University. OIT Help Desk ext.

Dreamweaver MX Technical Support Services. Office of Information Technology, West Virginia University. OIT Help Desk ext. Dreamweaver MX 2004 Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk - 293.4444 ext.1 http://oit.wvu.edu/support/training/classmat/ Instructors: Rick

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

FIT 100 LAB Activity 3: Constructing HTML Documents

FIT 100 LAB Activity 3: Constructing HTML Documents FIT 100 LAB Activity 3: Constructing HTML Documents Winter 2002.pdf version of this lab (may be better formatted) Required Reading for Lab 3 Chapter 4 of the FIT course pack Additional helpful references

More information

CSE 3. Marking Up with HTML. Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware

CSE 3. Marking Up with HTML. Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware CSE 3 Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware 1-1 4-1 Chapter 4: Marking Up With HTML: A Hypertext Markup Language Primer Fluency with Information Technology

More information

Chapter 4 A Hypertext Markup Language Primer

Chapter 4 A Hypertext Markup Language Primer Chapter 4 A Hypertext Markup Language Primer XHTML Mark Up with Tags Extensible Hypertext Markup Language Format Word/abbreviation in < > PAIR Singleton (not surround text) />

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

1.264 Lecture 12. HTML Introduction to FrontPage

1.264 Lecture 12. HTML Introduction to FrontPage 1.264 Lecture 12 HTML Introduction to FrontPage HTML Subset of Structured Generalized Markup Language (SGML), a document description language SGML is ISO standard Current version of HTML is version 4.01

More information

Electronic Portfolios in the Classroom

Electronic Portfolios in the Classroom Electronic Portfolios in the Classroom What are portfolios? Electronic Portfolios are a creative means of organizing, summarizing, and sharing artifacts, information, and ideas about teaching and/or learning,

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

CMT111-01/M1: HTML & Dreamweaver. Creating an HTML Document

CMT111-01/M1: HTML & Dreamweaver. Creating an HTML Document CMT111-01/M1: HTML & Dreamweaver Bunker Hill Community College Spring 2011 Instructor: Lawrence G. Piper Creating an HTML Document 24 January 2011 Goals for Today Be sure we have essential tools text editor

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 2 The World Wide Web is based on (Hypertext markup language). Although Dreamweaver is primarily a WYSIWYG editor, it is still worthwhile for Dreamweaver users to be familiar with

More information

Creating Forms. Starting the Page. another way of applying a template to a page.

Creating Forms. Starting the Page. another way of applying a template to a page. Creating Forms Chapter 9 Forms allow information to be obtained from users of a web site. The ability for someone to purchase items over the internet or receive information from internet users has become

More information

HTMLnotesS15.notebook. January 25, 2015

HTMLnotesS15.notebook. January 25, 2015 The link to another page is done with the

More information

Basics of Page Format

Basics of Page Format Basics of Page Format HTML Structural Tags Certain HTML tags provide the structure of the HTML document. These include the tag, the tag, the tag, and the tag. As soon as a

More information