HTML TEST. Multiple Choice Identify the choice that best completes the statement or answers the question.
|
|
|
- Bertram Black
- 9 years ago
- Views:
Transcription
1 HTML TEST Multiple Choice Identify the choice that best completes the statement or answers the question. 1. What does HTML stand for? a. Hyper Link Markup Language b. Hyper Text Markup Logics c. Hyper Text Transfer Language d. Hyper Text Markup Language 2. HTML is one of the most basic programming languages, and it is used to a. view a Web page on the Internet. b. tell the browser where and how to display all the elements of the Web page. c. tell the browser to save a document as a Web Page. d. transmit Web pages to your computer via a special communication protocol or rules. 3. The text editor that comes with Windows operating systems is called a. Notepad. b. Notebook. c. Microsoft Word. d. Notepaper. 4. To save text as a Web page, use the file extension(s) a..htm b..txt c..html d..docx e. both a and b f. both a and c g. all of the above are correct 5. _ are HTML commands used to format your page, and they are contained between the _. a. Tags, open quote and close quote. b. Attributes, open quote and close quote. c. Tags, less than sign and the greater than sign. d. Attributes, less than sign and the greater than sign. 6. All of the following are reasons to write HTML tags in all caps except a. It is the only way the code can be interpreted by a browser. b. So that it stands out amongst the rest of the code. c. Tags are easier to spot in all caps. d. All of the above are correct. 7. In HTML, there are 2 basic types of tags. They are a. stop tags and insert tags. b. insert tags and stop tags. c. start tags and stop tags. d. start/stop tags and insert tags. 8. _ tell your browser to either start doing something or stop doing something. a. Commands
2 b. Insert tags c. Attributes d. Start/stop tags 9. _ are designed to put something onto the page (like a picture, a horizontal line, or a text break), then they are done. a. Start/stop tags b. Insert tags c. Commands d. Attributes 10. Insert tags do not require a. values. b. start tags. c. stop/end tags. d. attributes. 11. You always want to begin your page with a tag. a. <BODY> b. <HTML> c. <HEAD> d. </HTML> 12. You always want to end your page with a tag. a. </HEAD> b. </HTML> c. <HTML> d. </BODY> 13. The 2 sections that HTML documents are divided into are the a. head and body. b. HTML and head. c. body and title. d. title and body. 14. Most tags will appear in the _ of a document. a. title b. foot c. body d. head 15. The _ is what will appear in the blue bar at the top of the browser, but will not appear on the page itself. a. title b. heading c. comment d. body 16. The title must be contained between the _ and _ commands. a. <BODY> </BODY> b. </HEAD> <BODY> c. <BODY> </HTML> d. <HEAD> </HEAD>
3 17. The line break tag that leaves a blank line, like double-spacing, is the a.   b. <DIV> c. <P> d. <BR> 18. The line break tag that ends the current line, and begins displaying text on the next line is the a. <DIV> b. <BR> c. <P> d.   19. The _ tag tells the browser to make the text bold and a particular size. a. paragraph b. bold c. font d. heading 20. Of the following tags, the tag that would display the largest size would be a. <H6> b. <H2> c. <H3> d. <H5> 21. Looking at the tag <H1 ALIGN= center > the attribute would be represented by a. H1 & ALIGN b. center c. H1 d. ALIGN 22. Looking at the tag <H1 ALIGN= center > the value would be represented by a. center b. H1 & ALIGN c. H1 d. ALIGN 23. To change the background color of your page, you need to add the attribute to the BODY tag. a. BACKGROUND b. BGRDCOLOR c. COLOR d. BGCOLOR 24. The start tag to change the background to yellow would look like a. <BODY BGCOLOR= #00FF00 > b. <HTML BGCOLOR= #FFFF00 > c. <BODY BGCOLOR= #FFFF00 > d. <HEAD BGCOLOR= #FFFF00 > 25. To change the color of your text, you will add the attribute to the BODY tag. a. FONT b. COLOR c. TEXT d. FACE
4 26. To add a horizontal line (also called a horizontal rule) to your document, use the tag. a. <LI> b. <H1> c. <HL> d. <HR> 27. The start tag to add a horizontal line with a width of a quarter of the page would look like: a. <HR WIDTH= 25% > b. <HL WIDTH= 25% > c. <HR WIDTH= 75% > d. <HR WIDTH= 50% > 28. The hexadecimal code for blue is a. FFFF00 b. 0000FF c. FF0000 d. 00FF If you wanted a bulleted list on your Web page you would use the _ tag. a. <LI> b. <DL> c. <UL> d. <OL> 30. If you wanted a numbered list on your Web page you would use the _ tag. a. <OL> b. <DL> c. <LI> d. <UL> 31. If you wanted a definition list on your Web page you would use the _ tag to begin the list. a. DI b. DL c. DT d. DD 32. The _ tag is used to begin each item in a list. a. <UL> b. <OL> c. <LI> d. <DL> 33. In a definition list, the _ tag begins the definition term. a. DL b. DT c. DD d. LI 34. If you wanted a unordered list with square bullets, your start tag would look like: a. <UL TYPE= square > b. <OL TYPE= square > c. <UL TYPE= i
5 d. <UL TYPE= 2 > 35. The tags that would make the word Test italicized would look like: a. </I>Test<I> b. <I>Test<I> c. <B>Test</B> d. <I>Test</I> 36. You can use the _ attribute to specify which font you would like your text to appear in. a. BODY b. FONT c. FACE d. TYPE 37. The start tag to change the font of a Web page to 12 point Courier should look like: a. <FONT FACE= COURIER SIZE= 3 > b. <FONT FACE= Courier SIZE= 3 > c. <FACE= Courier SIZE= 12 > d. <FONT TYPE= Courier SIZE= 12 > 38. The file extension JPEG stands for a. Joint Photographic Group b. Joint Photographic Experts Group c. Joint Photo Experts Group d. Joint Photographic Experts Graphic 39. The file extension GIF stands for a. Graphics Internal Format b. Graphics Interchange Format c. Graphically Interchangeable Format d. Graphics Internally Formatted 40. To insert an image in HTML you use the_ tag, which is an insert tag and does not require a stop/end tag. a. IMG b. SRC c. FILE d. PIC 41. The _ attribute must be specified for the image you are using in HTML. a. PIC b. FILE c. IMG d. SRC 42. You have saved an image of a Thanksgiving Day turkey as turkey.jpg on your computer. You want to insert this image on your Web page you are creating about Thanksgiving. Your tag for inserting this image should be a. <IMG SRC= Turkey.jpg > b. <IMG SRC=turkey.jpg> c. <SRC IMG= turkey.jpg > d. <IMG SRC= turkey.jpg >
6 43. You are creating a Web page about Thanksgiving, and you have saved an image of some pilgrims on your computer as pilgrims.jpg. You want to insert the image of the pilgrims on your Web page and center it. Your HTML code for this should be a. <DIV ALIGN=center> <IMG SRC= pilgrims.gif > </DIV> b. <DIV ALIGN= center > <IMG SRC= pilgrims.jpg > </DIV> c. <DIV ALIGN= middle > <IMG SRC= pilgrims.jpg > </DIV> d. <DIV ALIGN= center > <IMG SRC= pilgrims.jpg > <DIV> 44. Another attribute that should always be included in an image tag is the _ attribute, which adds a short text phrase to the image when the mouse points to the image. a. HREF b. CAPTION c. ALT d. COMMENT 45. To add a hyperlink to your document, use the _ tags. a. <A NAME= >...</A> b. <A HREF= >...</A> c. <A LINK= >...</A> d. <A VLINK= >...</A> 46. A link in HTML that contains the URL of the external site you are linking to is called a(n) a. graphic link. b. relative link. c. target link. d. absolute link. 47. Linking to another file that is on the same computer is called a(n) a. relative link. b. graphic link. c. target link. d. absolute link. 48. A link on a Web page that connects to another part or section of the same Web page is called a(n) a. absolute link. b. relative link. c. target link. d. graphic link. 49. To link from one part of a Web page to another part of the same page, you must first create an anchor, and then link to that anchor. To create the anchor, you use the _ command. a. <A HREF= >...</A> b. <A NAME= >...</A> c. <A LINK= >...</A>
7 d. <ANCHOR= >...</A> 50. You have saved an image of a tiger as tiger.jpg on your computer. You are creating a Web page about the Houston Zoo, and you want to use the image of the tiger as a link to the Houston Zoo s Web site ( Your code to use the tiger image as a graphic link, without a border on the image, should be a. <A NAME= ><IMG SRC= tiger.jpg BORDER= 0 ></A> b. <A HREF= ><IMG SRC= tiger.jpg BORDER= 0 ></A> c. <A HREF= ><IMG SRC= Tiger.jpg BORDER= NO ></A> d. <A HREF= ><IMG SRC= tiger.jpg BORDER= 0 ></A> 51. Generally, unvisited hyperlinks are the color blue and visited hyperlinks are the colors _. a. red or purple b. green or brown c. gray or yellow d. black or white 52. To set the color for an unvisited link you would use the _ attribute in the BODY tag. a. ALINK b. VLINK c. LINK d. ULINK 53. To change the color of a visited link you would use the _ attribute in the BODY tag. a. ALINK b. ULINK c. VLINK d. LINK 54. To use an image as a background, you need to add the _ attribute to the BODY tag. a. BGIMG b. BACKGROUND c. BGCOLOR d. BGRND 55. To create a watermark (where the background picture does not scroll as page scrolls as if the text is floating above the background), use the _ attribute in the BODY tag. a. BACKGROUND b. BGPROPERTIES c. BGIMAGE d. WATERMARK 56. To control how a background image tiles (or repeats), you can use the _ attribute in the BODY tag. a. REPEAT b. STYLE c. FIX d. TILE 57. _ in HTML allow you to arrange text, images and other HTML content into rows and columns with or without borders. a. Sections b. Tables c. Charts
8 d. Lists 58. In HTML to create a table, you use the _ tags. a. TABLE b. INSERT c. COLUMN d. GRAPH 59. The most common attribute of the table tag is the _ attribute. a. ROW b. BORDER c. COLUMN d. CELL 60. To create each table row, you would use the _ tag. a. TD b. ROW c. TR d. TH 61. To create a table heading, you would use the _ tag. a. TR b. TH c. TD d. THEAD 62. To create table data or each cell in a row, you would use the _ tag. a. TH b. CELL c. TD d. TR 63. If you want space in the cell of a table, you can use the non-breaking space symbol, which is, to create blank spaces. a.   b. $nbsp c. nbsp d. nbsp& 64. A _ is used to add a title, description, or explanation to a table. a. table heading b. table comment c. table alt tag d. table caption 65. The default location for the caption is top and _. a. bottom b. right c. left d. centered 66. You can use the _ tag to break a long heading or data in a table. a. BR
9 b. P c.   d. BREAK 67. The WIDTH attribute can be used inside the _ tag to set the width of the table in pixels or as a percentage of the browser window. a. HEAD b. THEAD c. TABLE d. BODY 68. You can use the BORDER attribute in the TABLE tag to set the width of the border around the table. The border is in pixels and the default is BORDER=. a. 0 b. 1 c. 5 d _ is responsible for the space between the content and border of the cell. a. Cell spacing b. Cell height c. Cell padding d. Cell width 70. Use the _ attribute in the <TABLE>, <TR>, <TH>, or <TD> tag to change the background color of the cell(s). a. BACKGROUND b. COLOR c. BGRNDCOLOR d. BGCOLOR 71. You can specify a color for the border of the table by adding the _ attribute to the table tag a. BGCOLOR b. BRDRCOLOR c. BORDERCOLOR d. COLOR 72. Sometime table headings or data span more than one row/column. To create a row or column that spans more than one row/column add a _ attribute to the <TD> or <TH> tag. You need to specify how many rows or columns you want to span. a. ROWSPAN b. MULTIPLE c. COLSPAN d. both a and c 73. To create the Copyright Symbol from HTML code, you would use a. ®. b. #copy. d. ©. 74. To create the greater than symbol > using HTML code, you would use a. <.
10 c. >. d. &grthn. 75. To create quotes in HTML code, you would use a. #quot. b. ". c. < >. d. QUOTE.
11 HTML TEST Answer Section MULTIPLE CHOICE 1. ANS: D PTS: 1 2. ANS: B PTS: 1 3. ANS: A PTS: 1 4. ANS: F PTS: 1 5. ANS: C PTS: 1 6. ANS: A PTS: 1 7. ANS: D PTS: 1 8. ANS: D PTS: 1 9. ANS: B PTS: ANS: C PTS: ANS: B PTS: ANS: B PTS: ANS: A PTS: ANS: C PTS: ANS: A PTS: ANS: D PTS: ANS: C PTS: ANS: B PTS: ANS: D PTS: ANS: B PTS: ANS: D PTS: ANS: A PTS: ANS: D PTS: ANS: C PTS: ANS: C PTS: ANS: D PTS: ANS: A PTS: ANS: B PTS: ANS: C PTS: ANS: A PTS: ANS: B PTS: ANS: C PTS: ANS: B PTS: ANS: A PTS: ANS: D PTS: ANS: C PTS: ANS: B PTS: ANS: B PTS: ANS: B PTS: ANS: A PTS: ANS: D PTS: 1
12 42. ANS: D PTS: ANS: B PTS: ANS: C PTS: ANS: B PTS: ANS: D PTS: ANS: A PTS: ANS: C PTS: ANS: B PTS: ANS: B PTS: ANS: A PTS: ANS: C PTS: ANS: C PTS: ANS: B PTS: ANS: B PTS: ANS: B PTS: ANS: B PTS: ANS: A PTS: ANS: B PTS: ANS: C PTS: ANS: B PTS: ANS: C PTS: ANS: A PTS: ANS: D PTS: ANS: D PTS: ANS: A PTS: ANS: C PTS: ANS: B PTS: ANS: C PTS: ANS: D PTS: ANS: C PTS: ANS: D PTS: ANS: D PTS: ANS: C PTS: ANS: B PTS: 1
CSE 3. Marking Up with HTML. Tags for Bold, Italic, and underline. Structuring Documents. An HTML Web Page File
CSE 3 Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware Chapter 4: Marking Up With HTML: A Hypertext Markup Language Primer Fluency with Information Technology Third
Introduction to Web Design Curriculum Sample
Introduction to Web Design Curriculum Sample Thank you for evaluating our curriculum pack for your school! We have assembled what we believe to be the finest collection of materials anywhere to teach basic
Introduction to XHTML. 2010, Robert K. Moniot 1
Chapter 4 Introduction to XHTML 2010, Robert K. Moniot 1 OBJECTIVES In this chapter, you will learn: Characteristics of XHTML vs. older HTML. How to write XHTML to create web pages: Controlling document
Chapter 2 HTML Basics Key Concepts. Copyright 2013 Terry Ann Morris, Ed.D
Chapter 2 HTML Basics Key Concepts Copyright 2013 Terry Ann Morris, Ed.D 1 First Web Page an opening tag... page info goes here a closing tag Head & Body Sections Head Section
BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS COPYRIGHT 2013 TERRY ANN MORRIS, ED.D
BASICS OF WEB DESIGN CHAPTER 2 HTML BASICS KEY CONCEPTS COPYRIGHT 2013 TERRY ANN MORRIS, ED.D 1 LEARNING OUTCOMES Describe the anatomy of a web page Format the body of a web page with block-level elements
HTML. A computer network is a collection of computers linked through cables or wireless means.
What is a computer network? HTML A computer network is a collection of computers linked through cables or wireless means. What is Internet? Internet is a network of computers of different sizes and configurations
WEB DESIGN LAB PART- A HTML LABORATORY MANUAL FOR 3 RD SEM IS AND CS (2011-2012)
WEB DESIGN LAB PART- A HTML LABORATORY MANUAL FOR 3 RD SEM IS AND CS (2011-2012) BY MISS. SAVITHA R LECTURER INFORMATION SCIENCE DEPTATMENT GOVERNMENT POLYTECHNIC GULBARGA FOR ANY FEEDBACK CONTACT TO EMAIL:
ICT 6012: Web Programming
ICT 6012: Web Programming Covers HTML, PHP Programming and JavaScript Covers in 13 lectures a lecture plan is supplied. Please note that there are some extra classes and some cancelled classes Mid-Term
Creating HTML authored webpages using a text editor
GRC 175 Assignment 1 Creating HTML authored webpages using a text editor Tasks: 1. Acquire web host space with ad free provider 2. Create an index webpage (index.html) 3. Create a class management webpage
Web Design Basics. Cindy Royal, Ph.D. Associate Professor Texas State University
Web Design Basics Cindy Royal, Ph.D. Associate Professor Texas State University HTML and CSS HTML stands for Hypertext Markup Language. It is the main language of the Web. While there are other languages
Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,:
CSS Tutorial Part 2: Last week we talked about creating your own tags: div tags and span tags. A div tag goes around other tags, e.g.,: animals A paragraph about animals goes here
Caldes CM12: Content Management Software Introduction v1.9
Caldes CM12: Content Management Software Introduction v1.9 Enterprise Version: If you are using Express, please contact us. Background Information This manual assumes that you have some basic knowledge
Introduction... 3. Designing your Common Template... 4. Designing your Shop Top Page... 6. Product Page Design... 8. Featured Products...
Introduction... 3 Designing your Common Template... 4 Common Template Dimensions... 5 Designing your Shop Top Page... 6 Shop Top Page Dimensions... 7 Product Page Design... 8 Editing the Product Page layout...
An Attribute is a special word used inside tag to specify additional information to tag such as color, alignment etc.
CHAPTER 10 HTML-I BASIC HTML ELEMENTS HTML (Hyper Text Markup Language) is a document-layout and hyperlink-specification language i.e., a language used to design the layout of a document and to specify
ICE: HTML, CSS, and Validation
ICE: HTML, CSS, and Validation Formatting a Recipe NAME: Overview Today you will be given an existing HTML page that already has significant content, in this case, a recipe. Your tasks are to: mark it
Contents. Downloading the Data Files... 2. Centering Page Elements... 6
Creating a Web Page Using HTML Part 1: Creating the Basic Structure of the Web Site INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 2.0 Winter 2010 Contents Introduction...
About webpage creation
About webpage creation Introduction HTML stands for HyperText Markup Language. It is the predominant markup language for Web=ages. > markup language is a modern system for annota?ng a text in a way that
Web Design Revision. AQA AS-Level Computing COMP2. 39 minutes. 39 marks. Page 1 of 17
Web Design Revision AQA AS-Level Computing COMP2 204 39 minutes 39 marks Page of 7 Q. (a) (i) What does HTML stand for?... () (ii) What does CSS stand for?... () (b) Figure shows a web page that has been
Web Development 1 A4 Project Description Web Architecture
Web Development 1 Introduction to A4, Architecture, Core Technologies A4 Project Description 2 Web Architecture 3 Web Service Web Service Web Service Browser Javascript Database Javascript Other Stuff:
Website Planning Checklist
Website Planning Checklist The following checklist will help clarify your needs and goals when creating a website you ll be surprised at how many decisions must be made before any production begins! Even
EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING
EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING The European Computer Driving Licence Foundation Ltd. Portview House Thorncastle Street Dublin 4 Ireland Tel: + 353
New Perspectives on Creating Web Pages with HTML. Considerations for Text and Graphical Tables. A Graphical Table. Using Fixed-Width Fonts
A Text Table New Perspectives on Creating Web Pages with HTML This figure shows a text table. Tutorial 4: Designing a Web Page with Tables 1 2 A Graphical Table Considerations for Text and Graphical Tables
Lesson Review Answers
Lesson Review Answers-1 Lesson Review Answers Lesson 1 Review 1. User-friendly Web page interfaces, such as a pleasing layout and easy navigation, are considered what type of issues? Front-end issues.
Advanced Drupal Features and Techniques
Advanced Drupal Features and Techniques Mount Holyoke College Office of Communications and Marketing 04/2/15 This MHC Drupal Manual contains proprietary information. It is the express property of Mount
HTML Tables. IT 3203 Introduction to Web Development
IT 3203 Introduction to Web Development Tables and Forms September 3 HTML Tables Tables are your friend: Data in rows and columns Positioning of information (But you should use style sheets for this) Slicing
COMMON CUSTOMIZATIONS
COMMON CUSTOMIZATIONS As always, if you have questions about any of these features, please contact us by e-mail at [email protected] or by phone at 1-800-562-6080. EDIT FOOTER TEXT Included
HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES HTML5 and CSS3 Part 1: Using HTML and CSS to Create a Website Layout Fall 2011, Version 1.0 Table of Contents Introduction...3 Downloading
Cisco Adaptive Security Appliance (ASA) Web VPN Portal Customization: Solution Brief
Guide Cisco Adaptive Security Appliance (ASA) Web VPN Portal Customization: Solution Brief Author: Ashur Kanoon August 2012 For further information, questions and comments please contact [email protected]
QUESTION BANK COMPUTER SCIENCE. Class VIII LESSON-1 INTRODUCTION TO MS ACCESS
QUESTION BANK COMPUTER SCIENCE Class VIII LESSON-1 INTRODUCTION TO MS ACCESS 1. What is a database? 2. Explain various types of database? 3. What is Normalization? Why is it required? 4. Database 5. Table
Formatting Text in Blackboard
Formatting Text in Blackboard If you want to spice up your blackboard announcements with different color of the text, bolded text, italicized text, lists, tables and images you can do so by typing HTML
04 Links & Images. 1 The Anchor Tag. 1.1 Hyperlinks
One of the greatest strengths of Hypertext Markup Language is hypertext the ability to link documents together. The World Wide Web itself consists of millions of html documents all linked together via
CS412 Interactive Lab Creating a Simple Web Form
CS412 Interactive Lab Creating a Simple Web Form Introduction In this laboratory, we will create a simple web form using HTML. You have seen several examples of HTML pages and forms as you have worked
How to Manage Your Eservice Center Knowledge Base
Populating and Maintaining your eservice Center Knowledge Base Table of Contents Populating and Maintaining the eservice Center Knowledge Base...2 Key Terms...2 Setting up the Knowledge Base...3 Consider
Web Design with Dreamweaver Lesson 4 Handout
Web Design with Dreamweaver Lesson 4 Handout What we learned Create hyperlinks to external websites Links can be made to open in a new browser window Email links can be inserted onto webpages. When the
Foundation of Information Technology (Code No: 165) Sample Question Paper II Summative Assessment - Term II. Max Time: 3 hours Max Marks: 90 SECTION A
Foundation of Information Technology (Code No: 165) Sample Question Paper II Summative Assessment - Term II Class X (2015-16) Max Time: 3 hours Max Marks: 90 SECTION A Q1) Fill in the blanks: [10] i) TR
CHAPTER 10. When you complete this chapter, you will be able to:
Data Tables CHAPTER 10 When you complete this chapter, you will be able to: Use table elements Use table headers and footers Group columns Style table borders Apply padding, margins, and fl oats to tables
Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence
Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.
How to Create an HTML Page
This is a step-by-step guide for creating a sample webpage. Once you have the page set up, you can add and customize your content using the various tags. To work on your webpage, you will need to access
HTML TIPS FOR DESIGNING
This is the first column. Look at me, I m the second column.
So we're set? Have your text-editor ready. Be sure you use NotePad, NOT Word or even WordPad. Great, let's get going.
Web Design 1A First Website Intro to Basic HTML So we're set? Have your text-editor ready. Be sure you use NotePad, NOT Word or even WordPad. Great, let's get going. Ok, let's just go through the steps
HTML, CSS, XML, and XSL
APPENDIX C HTML, CSS, XML, and XSL T his appendix is a very brief introduction to two markup languages and their style counterparts. The appendix is intended to give a high-level introduction to these
Urban Planet Website Content Management System. Step-by-Step Instructions
Urban Planet Website Content Management System Step-by-Step Instructions For steps with pictures, videos, version bugs, integration ideas, and more see http://uphelp.spps.org Department of Educational
Creating Web Pages with Microsoft FrontPage
Creating Web Pages with Microsoft FrontPage 1. Page Properties 1.1 Basic page information Choose File Properties. Type the name of the Title of the page, for example Template. And then click OK. Short
Web Design and Databases WD: Class 7: HTML and CSS Part 3
Web Design and Databases WD: Class 7: HTML and CSS Part 3 Dr Helen Hastie Dept of Computer Science Heriot-Watt University Some contributions from Head First HTML with CSS and XHTML, O Reilly Recap! HTML
The McGill Knowledge Base. Last Updated: August 19, 2014
The McGill Knowledge Base Last Updated: August 19, 2014 Table of Contents Table of Contents... 1... 2 Overview... 2 Support... 2 Exploring the KB Admin Control Panel Home page... 3 Personalizing the Home
Essential HTML & CSS for WordPress. Mark Raymond Luminys, Inc. 949-654-3890 [email protected] www.luminys.com
Essential HTML & CSS for WordPress Mark Raymond Luminys, Inc. 949-654-3890 [email protected] www.luminys.com HTML: Hypertext Markup Language HTML is a specification that defines how pages are created
Creating a Resume Webpage with
Creating a Resume Webpage with 6 Cascading Style Sheet Code In this chapter, we will learn the following to World Class CAD standards: Using a Storyboard to Create a Resume Webpage Starting a HTML Resume
Web Building Blocks. Joseph Gilbert User Experience Web Developer University of Virginia Library joe.gilbert@virginia.
Web Building Blocks Core Concepts for HTML & CSS Joseph Gilbert User Experience Web Developer University of Virginia Library [email protected] @joegilbert Why Learn the Building Blocks? The idea
With tags you can create italic or bold characters, and can control the color and size of the lettering.
HTML TUTORIAL TO UPDATE YOUR WEBSITE What Is a Tag? A tag is a method of formatting HTML documents. With tags you can create italic or bold characters, and can control the color and size of the lettering.
Basic Website Maintenance Tutorial*
Basic Website Maintenance Tutorial* Introduction You finally have your business online! This tutorial will teach you the basics you need to know to keep your site updated and working properly. It is important
Web Design Module Outline
Web Design Module Outline DAY 1 DAY 2 DAY 3 DAY 4 DAY 5 Lesson 1: WEB DESIGN OVERVIEW Lesson 2: INTRODUCTION TO HTML Lesson 3: TEXT & COLORS Lesson 4: IMAGES & LINKS Lesson 4: (cont.) IMAGES & LINKS what
Create Webpages using HTML and CSS
KS2 Create Webpages using HTML and CSS 1 Contents Learning Objectives... 3 What is HTML and CSS?... 4 The heading can improve Search Engine results... 4 E-safety Webpage... 5 Creating a Webpage... 6 Creating
Tagging an Existing PDF in Adobe Acrobat 8
Tagging an Existing PDF in Adobe Acrobat 8 Adobe Acrobat 8 allows for elements of a document to be tagged according to their purpose. These tags are not displayed in the document, but they are used by
Basic tutorial for Dreamweaver CS5
Basic tutorial for Dreamweaver CS5 Creating a New Website: When you first open up Dreamweaver, a welcome screen introduces the user to some basic options to start creating websites. If you re going to
ITNP43: HTML Lecture 4
ITNP43: HTML Lecture 4 1 Style versus Content HTML purists insist that style should be separate from content and structure HTML was only designed to specify the structure and content of a document Style
Cascading Style Sheet (CSS) Tutorial Using Notepad. Step by step instructions with full color screen shots
Updated version September 2015 All Creative Designs Cascading Style Sheet (CSS) Tutorial Using Notepad Step by step instructions with full color screen shots What is (CSS) Cascading Style Sheets and why
Atable is an orderly arrangement of data distributed across a grid of rows and
7 Tables and Layout Atable is an orderly arrangement of data distributed across a grid of rows and columns similar to a spreadsheet. In printed documents, tables commonly serve a subordinate function,
Advanced Web Design. Zac Van Note. www.design-link.org
Advanced Web Design Zac Van Note www.design-link.org COURSE ID: CP 341F90033T COURSE TITLE: Advanced Web Design COURSE DESCRIPTION: 2/21/04 Sat 9:00:00 AM - 4:00:00 PM 1 day Recommended Text: HTML for
Embedding a Data View dynamic report into an existing web-page
Embedding a Data View dynamic report into an existing web-page Author: GeoWise User Support Released: 23/11/2011 Version: 6.4.4 Embedding a Data View dynamic report into an existing web-page Table of Contents
Web Development CSE2WD Final Examination June 2012. (a) Which organisation is primarily responsible for HTML, CSS and DOM standards?
Question 1. (a) Which organisation is primarily responsible for HTML, CSS and DOM standards? (b) Briefly identify the primary purpose of the flowing inside the body section of an HTML document: (i) HTML
HTML & XHTML Tag Quick Reference
HTML & XHTML Tag Quick Reference Interactive Media Center This reference notes some of the most commonly used HTML and XHTML tags. It is not, nor is it intended to be, a comprehensive list of available
Lab 1.3 Basic HTML. Vocabulary. Discussion and Procedure
Lab 1.3 Basic HTML The World Wide Web (commonly just called the web ) is an enormous and rapidly growing collection of documents stored on computers all around the world connected by the Internet. In addition
How to code, test, and validate a web page
Chapter 2 How to code, test, and validate a web page Slide 1 Objectives Applied 1. Use a text editor like Aptana Studio 3 to create and edit HTML and CSS files. 2. Test an HTML document that s stored on
WebCT 4.x: HTML Editor
Competencies After reading this document, you will be able to: Employ the HTML Editor capabilities to create and publish content. About HTML Editor The HTML editor provides word-processor-like features
BlueHornet Whitepaper
BlueHornet Whitepaper Best Practices for HTML Email Rendering BlueHornet.com Page Page 1 1 2007 Inc. A wholly owned subsidiary of Digital River, Inc. (619) 295-1856 2150 W. Washington Street #110 San Diego,
Web Authoring CSS. www.fetac.ie. Module Descriptor
The Further Education and Training Awards Council (FETAC) was set up as a statutory body on 11 June 2001 by the Minister for Education and Science. Under the Qualifications (Education & Training) Act,
Web page design in 7 days!
Learnem Group presents: Web page design in 7 days! Lessons 1-7 By: Siamak Sarmady Start Here Copyright Notice : 2000,2001 Siamak Sarmady and Learnem Group. All rights reserved. This text is written to
Lecture 9 HTML Lists & Tables (Web Development Lecture 3)
Lecture 9 HTML Lists & Tables (Web Development Lecture 3) Today is our 3 rd Web Dev lecture During our 2 nd lecture on Web dev 1. We learnt to develop our own Web pages in HTML 2. We learnt about some
<script type="text/javascript"> var _gaq = _gaq []; _gaq.push(['_setaccount', 'UA 2418840 25']); _gaq.push(['_trackpageview']);
Learnem.com. Web Development Course Series. Learn em. HTML Web Design in 7 days! By: Siamak Sarmady
Learnem.com Web Development Course Series Learn em HTML Web Design in 7 days! By: Siamak Sarmady L E A R N E M W E B D E V E L O P M E N T C O U R S E S E R I E S HTML Web Design in 7 Days! Ver. 2.08.02
Creating Web Pages With Dreamweaver MX 2004
Creating Web Pages With Dreamweaver MX 2004 1 Introduction Learning Goal: By the end of the session, participants will have an understanding of: What Dreamweaver is, and How it can be used to create basic
Script Handbook for Interactive Scientific Website Building
Script Handbook for Interactive Scientific Website Building Version: 173205 Released: March 25, 2014 Chung-Lin Shan Contents 1 Basic Structures 1 11 Preparation 2 12 form 4 13 switch for the further step
WHITEPAPER. Skinning Guide. Let s chat. 800.9.Velaro www.velaro.com [email protected]. 2012 by Velaro
WHITEPAPER Skinning Guide Let s chat. 2012 by Velaro 800.9.Velaro www.velaro.com [email protected] INTRODUCTION Throughout the course of a chat conversation, there are a number of different web pages that
Accessibility in e-learning. Accessible Content Authoring Practices
Accessibility in e-learning Accessible Content Authoring Practices JUNE 2014 Contents Introduction... 3 Visual Content... 3 Images and Alt... 3 Image Maps and Alt... 4 Meaningless Images and Alt... 4 Images
How to Use the Text Editor in Blackboard
How to Use the Text Editor in Blackboard The image below is the text editor in Blackboard. No matter you add an item or discussion forum for your course as an instructor, post threads and replies on a
The Web Web page Links 16-3
Chapter Goals Compare and contrast the Internet and the World Wide Web Describe general Web processing Write basic HTML documents Describe several specific HTML tags and their purposes 16-1 Chapter Goals
Creating an HTML Document Using Macromedia Dreamweaver
INFORMATION SYSTEMS SERVICES Creating an HTML Document Using Macromedia Dreamweaver This tutorial workbook contains a series of exercises that give an introduction to creating HTML documents for the World
Short notes on webpage programming languages
Short notes on webpage programming languages What is HTML? 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
Garfield Public Schools Fine & Practical Arts Curriculum Web Design
Garfield Public Schools Fine & Practical Arts Curriculum Web Design (Half-Year) 2.5 Credits Course Description This course provides students with basic knowledge of HTML and CSS to create websites and
4. Click on the insert tab: Create a title at the top of the page using word art that says Microsoft Word PD 11-12
Using Microsoft Word 1. Open Microsoft word 2. Format page layout: Click on Page Layout tab Click on Margins tab to change margins to narrow top, bottom, left and right to.5 3. Click on the size tab and
CIS 467/602-01: Data Visualization
CIS 467/602-01: Data Visualization HTML, CSS, SVG, (& JavaScript) Dr. David Koop Assignment 1 Posted on the course web site Due Friday, Feb. 13 Get started soon! Submission information will be posted Useful
Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.
Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format
KOMPOZER Web Design Software
KOMPOZER Web Design Software An IGCSE Student Handbook written by Phil Watkins www.kompozer.net CONTENTS This student guide is designed to allow for you to become a competent user* of the Kompozer web
Selectors in Action LESSON 3
LESSON 3 Selectors in Action In this lesson, you will learn about the different types of selectors and how to use them. Setting Up the HTML Code Selectors are one of the most important aspects of CSS because
Your First Web Page. It all starts with an idea. Create an Azure Web App
Your First Web Page It all starts with an idea Every web page begins with an idea to communicate with an audience. For now, you will start with just a text file that will tell people a little about you,
How To Write A Web Page In Html
HTML Basics Welcome to HTML Basics. This workshop leads you through the basics of Hyper Text Markup Language (HTML). HTML is the building block for web pages. You will learn to use HTML to author an HTML
Creating your personal website. Installing necessary programs Creating a website Publishing a website
Creating your personal website Installing necessary programs Creating a website Publishing a website The objective of these instructions is to aid in the production of a personal website published on
Style & Layout in the web: CSS and Bootstrap
Style & Layout in the web: CSS and Bootstrap Ambient intelligence: technology and design Fulvio Corno Politecnico di Torino, 2014/2015 Goal Styling web content Advanced layout in web pages Responsive layouts
