access, html

Posted by genlan Friday, February 17, 2012

What is Microsoft Access?

MS Access is a Database Management System. It handles data management tasks the same way as MS Word handles document management and MS Excel handles statistics ...
A database is a collection of objects that allow you to store data, organize it and retrieve it in any way you want.

What this means is that, with Microsoft Access you create structures called tables that allow you to organize the data so that it's easy to find later, you create forms that let you input the data into the tables and then you create reports that print selected information from the tables.

For example, if you run a store, you would create a Customers table, a Products table and an Invoices table. Then, when you open an account for a new customer you would have a Customer form to input a customer's data into the Customers table and an Order form to input the purchase information. Later, you could print any number of Sales reports, grouping and arranging the information from the Invoices, Customers and Products tables to analyze daily or weekly or monthly sales in all kinds of combinations.

To help you along, Access contains a whole series of Wizards to guide you through the process.
Course description

This Microsoft Access course follows a step-by-step approach to the creation and development of a commercial database application.

We'll start with database modeling. That means that you have to design the database before you actually start to write it. There are several basic techniques that must be learned to ensure that the database structure will be solid. Design is an absolutely essential part of creating a database.

If you're already past the rookie stage and you want to delve deeper into the database modeling aspect, even before you start with Access, you might want to take a look at our Database design and SQL language tutorial. In a normal sequence of courses, SQL would be the next database subject you would learn after Access. Whereas Access is meant for the smaller user, SQL lets you into the domain of the power-user.

Once we're done with the design we'll develop the objects one by one and learn how to use them.

As we go along we'll use a simple application to illustrate the power of Microsoft Access in business. The application is a Video Rental Store and it's well suited to showing how a small businees could put into practice all these notions of management with databases.


After this Microsoft Access tutorial, you may want to go on to bigger and better databases such as Oracle, SQL Server or MySQL. The training you get from this tutorial will qualify you for the more advanced stuff.

You may also want to look at connecting your Microsoft Access database to a Visual Basic application.

By the end of this Microsoft Access database course, you will have made a good start towards becoming a full-fledged business applications programmer.

This course is on Application Development with Microsoft Access. It's not just about writing code. It's about finding the best solutions for data storage and retrieval requirements in organizations.
Basic concepts

Let's define what we will be doing:
• Application: a series of programs or computer codes that execute tasks that a user wants done.

Maintaining a list of your friends' addresses and phone numbers is a personal application.

Producing the weekly payroll for 100 employees of a business is a commercial application.

Running a computer model to forecast tomorrow's weather is a scientific application.

We will look at commercial applications only. We'll leave the scientific stuff to the people at M.I.T.



• Development: design, create, make, build all the parts of the application.

Analyze: talk to the client (the user) to find-out what he wants. If you don't have a user handy, use your imagination and prior knowledge to guess what a user would want.

Design: create a model of the system. A model is like a blueprint to a builder. It is a drawing or a description of some kind of what the system will look like when finished. When you determine how things will work and how problems will be solved. You do that before you start to write computer code.

Create: write the application using the software - Access, in this case. And while you're creating you're also testing and debugging to make sure that what you create works the way it's supposed to work.
• Microsoft Access: Access is part of Microsoft Office. However, it is not included in the basic suite with Word and Excel. You need to get Microsoft Office Professional Edition to have Access.

Obviously, if you intend to do this tutorial we have to assume that you have access to Access. It really is impossible to do otherwise.

We are using Access 2000. You could do just as well with Access 97. Any application created in Access 2000 can be converted to the previous version of Access and any application created in Access 97 can be used in Access 2000. The sample applications are all in Access 2000.

____________________________________________________________________________________
Visual Basic .NET Programming for Beginners
This computer course is an introduction to Visual Basic.NET programming for beginners. This course assumes that you have no programming experience whatsoever. It's a lot easier than you think, and can be a very rewarding hobby!
You don't need to buy any software for this course! You can use the new FREE Visual Basic Express Edition from Microsoft. You can download it here: http://www.microsoft.com/visualstudio/en-us/products/2010-editions/express


One - Getting Started

1. Getting started with VB.NET
2. Visual Basic .NET Forms
3. Adding Controls using the Toolbox
4. Adding a Textbox to the Form
5. Visual Basic .NET and Properties
6. The Text Property
7. Adding a splash of colour
8. Saving your work
9. Create a New Project

Two- Write your first .NET code

1. What is a Variable?
2. Add a coding button to the Form
3. Writing your first .NET code
4. String Variables
5. How to get at Text in a textbox
6. More about VB .NET variables
7. Using variables in your .NET code
8. A VB NET Calculator Project
9. The code for the calculator
10. The Message Box in VB .NET

Three - Conditional Logic

1. If Statements
2. Select Case Statements
3. Add a Combo Box to a VB .NET form
4. The Conditional Operators
5. Section Three Exercises

Four- Loops

1. An Introduction to Loops in VB .NET
2. For Loops
3. Do Loops
4. A Times Table Programme
5. The Code for the Time Table Programme
6. The Basic Math Symbols in VB .NET





Five - Adding menus to Forms

1. Add a menu to a VB .NET Form
2. How to add code to a Menu
3. How to add a Sub Menu to your Form
4. How to add Shortcuts to your Menu Items
5. A VB .NET menu Project
6. The Open File Dialogue Box
7. Filter files with the Open File Dialogue Box
8. The Open File Dialogue Box
9. The Save File Dialogue Box
10. Cut, Copy, Paste and Undo menus
11. How to Show and Hide Controls
12. Insert Images into a Picture Box
13. Add a Checkbox to a VB .NET form
14. Writing code for Checkboxes
15. Add Option Buttons to a VB .NET form

Six - Debugging your code

1. Error Handling and Debugging in VB .NET
2. Design Time Errors
3. RunTime Errors
4. Try ... Catch in VB .NET
5. Logic Errors
6.Breakpoints and Debugging tools

Seven - Mastering Arrays

1. What is an Array?
2. Arrays and the Index Number
3. Assigning Values to an Array
4. Arrays where boundaries are not known

Eight - String Manipulation

1. The String Variable Type
2. How to use the Trim Method
3. The difference between Char and Chars()
4. How to use the InStr Method
5. How to use the Substring Method
6. Equals, Replace and Insert Methods
7. How to use Split and Join in VB .NET
Nine - Working with Text Files

1. What is a Text File?
2. How to Open a Text File in VB .NET
3. How to Read a Text File Line by Line
4. How to Write to a Text File in VB .NET
5. Appending Text to a File in VB .NET
6. How to Copy a File
7. How to Move a File
8. How to Delete a File

Ten - Functions and Subs

1. An Introduction to Functions and Subs
2. How to Create your own Subs in VB .NET
3. Using Parameters in your Subs
4. ByVal and ByRef in VB .NET
5. How to Create a Function in VB.NET
6. How to use Parameters with Functions
7. Standard Modules - Part One
8. Standard Modules - Part Two

Eleven - Events

1. The Click Event
2. The MouseDown Event
3. The KeyDown Event
4. The Form Load Event

Twelve - Classes and Objects

1. An Introduction to Classes and Objects
2. Create your own Classes in VB .NET
3. How to Create Methods in your Classes
4. More about Creating Methods
5. Create Properties in your Classes
3. How to Use your New Property

Thirteen - VB .NET and Databases

1. VB NET Express and Databases
2. The Database Wizard in VB NET Express
3. Write your own VB .NET database code
4. Learn about DataSets and Data Adaptors
5. Display the Data in the DataSet
6. Navigate a Database with VB .NET
7. How to Move through the Database
8. Add, Update and Delete Records
9. Add a New Record using VB .NET
10. Delete a Record using VB .NET

Fourteen - VB NET and Forms

1. Anchor and Dock Controls on a Form
2. Add a Toolbar to a Form
3. Creating Multiple Forms in VB .NET
4. Modal and Non Modal Forms
5. Getting at Values on Other Forms






INTRODUCTION TO MICROSOFT VISUAL BASIC

Microsoft Visual Basic is a “visual programming” environment for developing Windows applications. It is a high level programming language that evolved from the earlier D.O.S. ( Disk Operating System) version called B,A.S.I.C. (Beginners All- purpose Symbolic Instruction Code). “BASIC” uses a text environment and the program executes sequentially . “Visual Basic” uses a graphical environment (Graphical User Interface or GUI) that makes it easy to develop applications. It provides an interesting set of tools where the programmer may “drag and drop controls” and spend lesser time in coding. It uses common English phrases, making it one of the most popular programming languages today.

Visual Basic is also an “event driven” programming language, whereby procedures are automatically called whenever the end user chooses menu items, clicks the mouse, moves objects on screen, and other functions that a programmer may define during coding. What could take days to create applications in other programming languages may take only hours for Visual Basic because of this feature.

The First Edition of Visual Basic was released by Microsoft in 1987, while C, Pascal and C++ programming languages were already in existence. It was one of the first products to provide a graphical programming environment. It has three editions, namely, the Standard Edition, the Professional Edition, and the Enterprise Edition. The standard Edition, also called the learning edition, gives you a complete development environment but lacks tools that the Professional Edition has, including add-in tools help file compiler, a better database access tools, and better web programming support. The Enterprise Edition provides extended and advanced tools for client/ server platform. For beginners who are learning how to develop programs, the Standard or the Professional Edition may be used.

In the real world application, you can see a lot of business processes where programming is being applied. For instance, majority of private schools are using computerized registration system. Another application could be a typical payroll system that is used to compute for the compensation of employees or a bank transaction whereby a client deposits or withdraws money from his/her account. All these can be done using any GUI-based application such as Visual Basic.



References:

http://www.homeandlearn.co.uk/NET/vbNet.html
HTML QUESTIONS AND ANSWERS
1) Is it possible to set up a browser so it refuse pages that does not have a content rating meta tag?
a) Yes - many companies and parents actually do
b) No
c) Only with a cybersitter add on

2) When images are used as links they get a blue border.
a) Always
b) Never
c) Unless border is set to zero

3) A 6 digit Hex color (#FF9966) defines values of Red, Blue and Green in which order ?
a) #BBRRGG
b) #BBGGRR
c) #RRGGBB

4) When you count to 15 using hexadecimal numbers, the highest number is what ?
a) F
b) B
c) 15

5) The and tags are special in what way ?
a) They can be repeated
b) They work on anything
c) They are for images only

6) What does vlink mean ?
a) visited link
b) very good link
c) active link

7) Banners, buttons, dividers, clipart and other simple images usually work best as ?
a) fonts
b) gif
c) jpg

8) Which format usually works best for photos ?
a) JPG
b) HTML
c) GIF

9) and are the tags used for ?
a) Audio-voiced text
b) Adding links to your page
c) Aligning text

10) What does the GENERATOR meta tag tell ?
a) What type of server your page is on
b) Which program was used to produce the page
c) Who designed the page

11) What tag is used to add columns to tables ?
a)
b)
c)

12) Use and to add what to your tables?
a) columns
b) rows
c) steps

13) What is the REFRESH meta tag used for ?
a) Refresh your keywords
b) Allow search engines to relist your page
c) Redirect to a new domain

14) Screen colors are defined by which colors ?
a) Green, Blue, and Yellow
b) Crayola Colors
c) Red, Green and Blue

15) What tag can prevent sites with adult content from being seen on MSIEbrowsers ?
a) tag
b) tag
c) icra.org registered

16) To specify a font for your whole page add which tag ?
a)
b)
c)

17) Increasing the cellpadding value will what ?
a) Increase the distance between cell and content
b) Increase the space between cells
c) Increase the softness of your site
Show Answer
________________________________________
18) Which of the following is NOT true of metatags use ?
a) Which of the following is NOT true of metatags use ?
b) Do not include words that are not present on your pages
c) Use as many keywords as you can
Show Answer
________________________________________
19) To change the size of an image in HTML use what ?
a) pliers
b) height and width
c) bigger and smaller
Show Answer
________________________________________
20) Hex-colors are the only way to define colors on the web?
a) True for Internet Explorer, False for Netscape browsers
b) False, colors can also be specified with names and CSS
c) True, computer screens only understands hexadecimal values.
Show Answer
________________________________________
21) Is it a common myth that meta tags seriously improve search engine rankings ?
a) no
b) only in Nepal
c) yes
Show Answer
________________________________________
22) Choose the correct HTML tag to make a text italic
a)
b)
Show Answer
________________________________________
23) Choose the correct HTML tag to make a text bold
a)
b)
Show Answer
________________________________________
24) If the background image is smaller than the screen, what will happen ?
a) It will be stretched
b) It will leave a blank space at the bottom of your page
c) It will be repeated
Show Answer
________________________________________
25) HTML defines colors using hexidecimal values, while graphics programs most often use what ?
a) Names
b) Normal numbers
c) RGB Code
Show Answer
________________________________________
26) The tag belongs where in your HTML ? <br />a) Head <br />b) Arm <br />c) Body <br />Show Answer <br />________________________________________ <br />27) If you don’t want the frame windows to be resizeable, simply add what to the <frame> lines ? <br />a) save <br />b) dontresize <br />c) noresize <br />Show Answer <br />________________________________________ <br />28)How can you make a list that lists the items with numbers? <br />a) <dl> <br />b) <ol> <br />c)<ul> <br />d)<list> <br />Show Answer <br />________________________________________ <br />29) Most search engines give serious importance to meta tags when ranking websites in their listings ? <br />a) True <br />b) It depends on the keywords <br />c) False <br />Show Answer <br />________________________________________ <br />30) Which colors consist of equal amounts of all basic colors ? <br />a) purple, green, and red <br />b) black, blue, and gray <br />c) white, black and gray <br />Show Answer <br />________________________________________ <br />31) Which has higher priority, cell settings or table settings ? <br />a) Neither <br />b) Cell settings <br />c) Table settings <br />Show Answer <br />________________________________________ <br />32)What does HTML stand for? <br />a) Hyper Text Markup Language <br />b) Hyperlinks and Text Markup Language <br />c) Home Tool Markup Language <br />Show Answer <br />________________________________________ <br />33) What is the correct HTML for adding a background color? <br />a) <body background="yellow"> <br />b)<background>yellow</background> <br />c) <body style="background-color:white"> <br />Show Answer <br />________________________________________ <br />34) To make the appearance of the colors more powerful on your site do which of the following ? <br />a) Do not use colors <br />b) Limit their use <br />c) Splash them all over <br />Show Answer <br />________________________________________ <br />35) When is the content of a table shown ? <br />a) In pieces as it loads <br />b) Before the border loads <br />c) After the table is loaded <br />Show Answer <br />________________________________________ <br />36) To add rows to your tables use which tags? <br />a) <td> and </td> <br />b)<cr> and </cr> <br />c) <tr> and </tr> <br />Show Answer <br />________________________________________ <br />37) Gif and jpg are the two main types of what ? <br />a) animated effects <br />b) outlines <br />c) images <br />Show Answer <br />________________________________________ <br />38) WYSIWYG stands for ? <br />a) What You See Is What You Get <br />b) When You Start Is When You Go <br />c) What You See Is What You Gain <br />Show Answer <br />________________________________________ <br />39) Choose the correct HTML tag for the largest heading <br />a) <heading> <br />b)<h6> <br />c) <head> <br />d) <h1> <br />Show Answer <br />________________________________________ <br />40) Choose the correct HTML to left-align the content inside a tablecell <br />a) <td valign="left"> <br />b) <tdleft> <br />c) <td align="left"> <br />d)<td leftalign> <br />Show Answer <br />________________________________________ <br />41) To create a bulleted list use ? <br />a) <il> <br />b) <ul> <br />c) <ol> <br />Show Answer <br />________________________________________ <br />42) Besides<B>, another way to make text bold is what ? <br />a) <strong> <br />b) <dark> <br />c) <fat> <br />Show Answer <br />________________________________________ <br />43) Hexadecimal numbers are numbers based on the value of what ? <br />a) 10 <br />b) 8 <br />c) 16 <br />Show Answer <br />________________________________________ <br />44) Which is NOT a predefined target for links ? <br />a) _son <br />b) _parent <br />c) _blank <br />Show Answer <br />________________________________________ <br />45) If you do not include a DESCRIPTION meta tag, most search engine will simply list what ? <br />a) Nothing <br />b) All text above the fold of your page <br />c) The first few words on the page <br />Show Answer <br />________________________________________ <br />46) How many characters can be written with 1 Kilobyte ? <br />a) 1024 <br />b) 1 <br />c) Depends on the font used <br />Show Answer <br />________________________________________ <br />47)To start a list at the count of 3, use which ? <br />a) <ol start="3"> <br />b) <ol begin="3"> <br />c)<ol list="5"> <br />Show Answer <br />________________________________________ <br />48) Who is making the Web standards? <br />a) The World Wide Web Consortium <br />b) Mozilla <br />c) Microsoft <br />Show Answer <br />________________________________________ <br />49) Which tag can set the background color for your page? <br />a) <body> <br />b)<head> <br />c)<font> <br />Show Answer <br />________________________________________ <br />50) What is the correct HTML tag for inserting a line break? <br />a) <lb /> <br />b) <br /> <br />c)<break /> <br />Show Answer <br />________________________________________ <br />51) The attribute used to choose the type of font in HTML is ? <br />a) Character <br />b) Face <br />c) Text-type <br />Show Answer <br />________________________________________ <br />52) colspan=n can be added to only what tag? <br />a)<table> <br />b)<td> <br />c)<tr> <br />Show Answer <br />________________________________________ <br />53) Rather than using Hspace and Vspace you can use which of the following to add spacing to your image ? <br />a) height and width <br />b) 1x1 pixel transparent image <br />c) align=+2 <br />Show Answer <br />________________________________________ <br />54) What is the correct HTML for creating a hyperlink? <br />a)<a name="http://www.qualitypointtech.com">Qualitypoint Technologies</a> <br />b) <a href="http://www.qualitypointtech.com">Qualitypoint Technologies</a> <br />c) <a>http://www.qualitypointtech.com</a> <br />d) <a url="http://www.qualitypointtech.com">Qualitypoint Technologies</a> <br />Show Answer <br />________________________________________ <br />55) In the code <frameset cols="120,*"> the following would be true. <br />a) Top frame would be 120 pixels high <br />b) Left frame would be 120 inches wide <br />c) Left frame would be 120 pixels wide <br />Show Answer <br />________________________________________ <br />56) Which program do you need to write HTML? <br />a) Any text editor <br />b) HTML-development suite 4 <br />c) A graphics program <br />Show Answer <br />________________________________________ <br />57) When making bulleted lists you have what options ? <br />a) disc, circle, square <br />b) triangle, square, circle <br />c) square, disc, polygon <br />Show Answer <br />________________________________________ <br />58) A file that specifies how the screen is divided into frames is called a __________ <br />a) frameset <br />b) frametable <br />c) tablelink <br />Show Answer <br />________________________________________ <br />59) Which of these is not valid HTML? <br />a) <font face="verdana,arial"> <br />b)<fontface="verdana"> <br />c) <font face="verdana"> <br />Show Answer <br />________________________________________ <br />60) Which of these tags are all <table>tags? <br />a) <thead><body><tr> <br />b) <table><tr><td> <br />c)<table><head><tfoot> <br />d)<table><tr><tt> <br />Show Answer <br />________________________________________ <br />61) The <br>tag adds what to your webpage ? <br />a) Line break <br />b) Little bubbles <br />c) Long breaks <br />Show Answer <br />________________________________________ <br />62) What tag tells where a link starts ? <br />a) <l> <br />b) <start> <br />c) <a> <br />Show Answer <br />________________________________________ <br />63) Settings for columns(<td> tag) have higher priority than settings for rows(<tr> tag) <br />a) Sometimes true, sometimes not <br />b) True <br />c) False <br />Show Answer <br />________________________________________ <br />64) Colors in plain HTML can be specified using ? <br />a) Meta tags <br />b) Images <br />c) Hexadecimal Colors <br />Show Answer <br />________________________________________ <br />65) Relative path make your hypertext links______. <br />a) Portable <br />b) Discrete <br />c) Uniform <br />Show Answer <br />________________________________________ <br />66) <ol> tags will create what kind of list ? <br />a) Numbered List <br />b) Bulleted List <br />c) Grocery List <br />Show Answer <br />________________________________________ <br />67) Is it possible to link within the current page ? <br />a) No <br />b) Only in framesets <br />c) Yes <br />Show Answer <br />________________________________________ <br />68) Tags and text that do not show directly on the page are placed where ? <br />a) Body <br />b) Tables <br />c) Head <br />Show Answer <br />________________________________________ <br />69) To create a list using lowercase letters use ? <br />a)<ol "a"> <br />b) <ol letter="a"> <br />c)<ol type="a"> <br /> <br />70) To seperate single list items use ? <br />a)<li> and </li> <br />b)<ol> and </ol> <br />c) <ul> and </ul> <br /> <br />71) Which section is used for text and tags that are shown directly on your web page ? <br />a) Body <br />b) Metatags <br />c) Head <br /> <br />72) To set the font for a single link, where do you add the <font></font> tags ? <br />a) Outside the <a> and </a> <br />b) In the <body> tag <br />c) Inside the <a> and </a> tags <br /> <br />73) Why should you add alternative text to your images ? <br />a) In case the user wishes to load a different picture <br />b) So the user can save the image using the text as a name <br />c) So the users can get an idea of what the image is before it loads <br /> <br />74) What is used to store information usually relevant to browsers and searchengines? <br />a) Tabs <br />b) Cookies <br />c) Metatags <br /> <br /> <br />75) What tag tells the browser where the page starts and stops ? <br />a) <head> <br />b) <body> <br />c)<html> <br /> <br />76) Why should you specify a background color if you are using an image for the actual background of your page ? <br />a) The background color will be shown until the image loads <br />b) In case the image doesnt fit right <br />c) So the text shows up better <br /> <br />77) The background image will scroll when the user scrolls down the page, unless you add which property to the <body> tag? <br />a) bgproperties="holdstill" <br />b) bgproperties="fixed" <br />c) bgproperties="stationary" <br /> <br />78) Imagelinks can show a text label if you add which property? <br />a) alternative <br />b) str <br />c) alt <br /> <br />79) Adding a border to your image helps the visitor to recognize it as what ? <br />a) A really great picture <br />b) A frame <br />c) A Link <br /> <br />80) Which of the following is NOT a valid pair for browser safe colors ? <br />a) AA <br />b) CC <br />c) 00 <br /> <br />81)To start a numbered list with regular numerals use ? <br />a) <ol type="a"> <br />b) <ol type="1"> <br />c) <ol type="I"> <br /> <br />82) Defining clickable sub-areas on an image is called? <br />a) imagelinking <br />b) imagemapping <br />c) multiple linking <br /> <br />83) How can you open a link in a new browser window? <br />a) <a href="url" new> <br />b) <a href="url" target="_blank"> <br />c) <a href="url" target="new <br /> <br />84) What tag adds a paragraph break after the text ? <br />a) <PARAGRAPH> <br />b) <P> <br />c) <BR> <br /> <br /> <br />85) Which property will open a page in a new window? <br />a) target="_self" <br />b) target="_blank" <br />c) target="_top" <br /> <br /> <br />86) The <i> tag makes text... ? <br />a) Bold <br />b) Inline <br />c) Italic <br /> <br />87) Which two meta tags have special relevance for search engines ? <br />a) Description and Keywords <br />b) Description and Name <br />c) Cookies and Keywords <br /> <br />88) To start a list using circles use which of these tags ? <br />a) <ul type="circle"> <br />b)<ul "circle"> <br />c) <ul type="round"> <br /> <br />89) All normal webpages consist of what two parts ? <br />a) Head and body <br />b) Top and bottom <br />c) Body and frameset <br /> <br />90) Use what to prevent confusion on numbers higher than 9 with hexadecimal colors ? <br />a) # <br />b) ! <br />c) % <br /> <br />91) Why do designers often use slight variations of black and white as background colors ? <br />a) Personal choice <br />b) Black and white are ugly colors <br />c) To make the page more readable <br /> <br />92) Which will let text wrap down the side of the image? <br />a) <img src="myImage.gif" align="wrap"> <br />b)<img src="myImage.gif" align="right"> <br />c) <img src="myImage.gif" wrap="on"> <br /> <br />93) There are how many "browser safe colors" ? <br />a) 16 Million <br />b) 216 <br />c) 256 <br /> <br />94) How do you add a link which will allow the visitor to send an email from your page ? <br />a) Add an image of an envelope <br />b)Add <a href="sendmailtoyouraddress"> <br />c) Add <a href="mailto:youraddress"> <br /> <br />95) Which tag is used to insert images into your web page ? <br />a) pic <br />b) scr <br />c) img <br /> <br /> <br />96) One should never combine the "start" and "type" option ? <br />a) True <br />b) Sometimes True, sometimes False <br />c) False <br /> <br />97) What is the most important tool for adding colors to certain areas of the page rather than the entire background ? <br />a) Fonts <br />b) Tables <br />c) Images <br /> <br /> <br />98) All HTML tags are enclosed in what ? <br />a) <> <br />b) ? and ! <br />c) # and # <br /> <br /> <br />99) Which of the following will NOT be found in the <head> section ? <br />a) Metatags <br />b) Title <br />c) Table <br /> <br />100) Which property tells how many rows a cell should span ? <br />a) colspan=n <br />b) Both rowspan=n and colspan=n <br />c) rowspan=n <br /> <br />101) You can add names to each frame window using which setting ? <br />a) name <br />b) src <br />c) ur <br /> <br />102) Using Hspace will add what to your image ? <br />a) Space to the left and right <br />b) Space to the top and bottom <br />c) Height to all sides <br /> <br /> <br />Answers <br />________________________________________ <br />(1) a <br />(2) c <br />(3) c <br />(4) a <br />(5) a <br />(6) a <br />(7) b <br />(8) a <br />(9) b <br />(10) b <br />(11) b <br />(12) a <br />(13) c <br />(14) c <br />(15) c <br />(16) c <br />(17) a <br />(18) c <br />(19) b <br />(20) b <br />(21) c <br />(22) b <br />(23) b <br />(24) c <br />(25) c <br />(26) a <br />(27) c <br />(28) b <br />(29) c <br />(30) c <br />(31) b <br />(32) a <br />(33) c <br />(34) b <br />(35) c <br />(36) c <br />(37) c <br />(38) a <br />(39) d <br />(40) c <br />(41) b <br />(42) a <br />(43) c <br />(44) a <br />(45) c <br />(46) a <br />(47) a <br />(48) a <br />(49) a <br />(50) b <br />(51) b <br />(52) b <br />(53) b <br />(54) b <br />(55) c <br />(56) a <br />(57) a <br />(58) a <br />(59) b <br />(60) b <br />(61) a <br />(62) c <br />(63) b <br />(64) c <br />(65) a <br />(66) a <br />(67) c <br />(68) c <br />(69) c <br />(70) a <br />(71) a <br />(72) c <br />(73) c <br />(74) c <br />(75) c <br />(76) a <br />(77) b <br />(78) c <br />(79) c <br />(80) a <br />(81) b <br />(82) b <br />(83) b <br />(84) b <br />(85) b <br />(86) c <br />(87) a <br />(88) a <br />(89) a <br />(90) a <br />(91) c <br />(92) b <br />(93) c <br />(94) c <br />(95) c <br />(96) c <br />(97) b <br />(98) a <br />(99) c <br />(100) c <br />(101) a <br />(102) a <br /> <br /></p> <div style='clear:both;'></div> </div> </div> <div class='edit'></div> <div class='singleinfo'> <div class='category'> <span class='post-backlinks post-comment-link'> </span> <span class='post-icons'> | <span class='item-action'> <a href='https://www.blogger.com/email-post/6942860372473365367/7210146208446607887' title='Email Post'> <img alt='' class='icon-action' height='13' src='http://www.blogger.com/img/icon18_email.gif' width='18'/> </a> </span> <span class='item-control blog-admin pid-1136440278'> <a href='https://www.blogger.com/post-edit.g?blogID=6942860372473365367&postID=7210146208446607887&from=pencil' title='Edit Post'> <img alt='edit post' class='icon-action' src='http://www.blogger.com/img/icon18_edit_allbkg.gif'/> </a> </span> </span> </div> </div> </div> <div class='comments' id='comment'> <a name='comments'></a> <h4 id='comments'> <span class='teal'>0</span> comments </h4> <ol class='commentlist'> </ol> <div id='respond'> <div class='comment-form'> <a name='comment-form'></a> <h4>Post a Comment</h4> <p> </p> <iframe allowtransparency='true' frameborder='0' height='275' id='comment-editor' scrolling='auto' src='https://www.blogger.com/comment/frame/6942860372473365367?po=7210146208446607887&hl=en' width='640'></iframe> </div> </div> <div id='backlinks-container'> <div id='Blog1_backlinks-container'> </div> </div> </div> <!--Can't find substitution for tag [adEnd]--> </div> <div class='blog-pager' id='blog-pager'> <span id='blog-pager-newer-link'> <a class='blog-pager-newer-link' href='https://njacingenlan.blogspot.com/2012/02/technology-and-livelihood-education-iv.html' id='Blog1_blog-pager-newer-link' title='Newer Post'>Newer Post</a> </span> <span id='blog-pager-older-link'> <a class='blog-pager-older-link' href='https://njacingenlan.blogspot.com/2012/02/fall-of-tokugawa-shogunate.html' id='Blog1_blog-pager-older-link' title='Older Post'>Older Post</a> </span> <a class='home-link' href='https://njacingenlan.blogspot.com/'>Home</a> </div> </div></div> </div> <div id='rightcol'> <div class='sidebar3'> <div class='cahayabiru3 section' id='cahayabiru3'><div class='widget HTML' data-version='1' id='HTML14'> <h2 class='title'>pic web</h2> <div class='widget-content'> http://www.fotosearch.com/photos-images/wedding_3.html http://www.thenagain.info/webchron/glossary/absmonarch.html </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML13'> <div class='widget-content'> http://www.culturecrossing.net/basics_business_student_details.php?Id=14&CID=163 </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML12'> <div class='widget-content'> http://www.culturecrossing.net/basics_business_student_details.php?Id=14&CID=163 </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML11'> <div class='widget-content'> <table width="380" background="http://abmp3.com/img/bg_player.gif" border="0" cellpadding="0" cellspacing="0" height="80"><tbody><tr><td><table width="100%" border="0" cellpadding="0" cellspacing="0" height="80"><tbody><tr><td valign="bottom" align="center" height="20"><span style="color: rgb(255, 255, 255); text-decoration: none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:10px;" ><a style="font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 10px; font-weight: bold; color: rgb(255, 255, 255); text-decoration: none;" href="http://abmp3.com/download/8348589-we-will-get-there.html">ËïÑà ×Ë - We Will Get There</a></span></td></tr><tr><td height="5"><img src="http://abmp3.com/img/5x5_tr.gif" width="5" height="5" /></td></tr><tr><td><table width="100%" border="0" cellpadding="0" cellspacing="0" height="30"><tbody><tr><td width="18"> </td><td valign="middle" align="left"><span style="color: rgb(255, 255, 255); text-decoration: none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:10px;" ><embed class="beeplayer" wmode="transparent" style="height: 24px; width: 260px;" src="http://abmp3.com/player/player.swf" quality="high" bgcolor="#ffffff" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="playerID=1&bg=0xCDDFF3&leftbg=0x357DCE&lefticon=0xF2F2F2&rightbg=0x64F051&rightbghover=0x1BAD07&righticon=0xF2F2F2&righticonhover=0xFFFFFF&text=0x357DCE&slider=0x357DCE&track=0xFFFFFF&border=0xFFFFFF&loader=0xAF2910&soundFile=http://mp3.jnnc.com/music/mp3/sunyz/leave/11.mp3 " width="260" align="middle" height="24"></embed></span></td><td valign="middle" width="70" align="center"><img src="http://abmp3.com/img/logo_small.gif" width="68" height="24" /></td><td width="18"> </td></tr></tbody></table></td></tr><tr><td height="5"><img src="http://abmp3.com/img/5x5_tr.gif" width="5" height="5" /></td></tr><tr><td valign="top" align="center" height="20"><span style="color: rgb(255, 255, 255); text-decoration: none;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:10px;" >Found at <a style="font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 10px; color: rgb(255, 255, 255); text-decoration: underline;" href="http://abmp3.com/">abmp3 search engine</a></span></td></tr></tbody></table></td></tr></tbody></table> </div> <div class='clear'></div> </div><div class='widget Profile' data-version='1' id='Profile1'> <h2>About Me</h2> <div class='widget-content'> <a href='https://www.blogger.com/profile/05454084873054195259'><img alt='My photo' class='profile-img' height='80' src='//1.bp.blogspot.com/_Q5-xjlyIHCk/Smlg17lq1jI/AAAAAAAAAIM/PrhXrgzeHb0/S220-s80/h.jpg' width='60'/></a> <dl class='profile-datablock'> <dt class='profile-data'> <a class='profile-name-link g-profile' href='https://www.blogger.com/profile/05454084873054195259' rel='author' style='background-image: url(//www.blogger.com/img/logo-16.png);'> genlan </a> </dt> <dd class='profile-textblock'>this is my way of showing what my interest in this world. hope you enjoy reading while learning.............</dd> </dl> <a class='profile-link' href='https://www.blogger.com/profile/05454084873054195259' rel='author'>View my complete profile</a> <div class='clear'></div> </div> </div><div class='widget Followers' data-version='1' id='Followers1'> <h2 class='title'>Followers</h2> <div class='widget-content'> <div id='Followers1-wrapper'> <div style='margin-right:2px;'> <div><script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <div id="followers-iframe-container"></div> <script type="text/javascript"> window.followersIframe = null; function followersIframeOpen(url) { gapi.load("gapi.iframes", function() { if (gapi.iframes && gapi.iframes.getContext) { window.followersIframe = gapi.iframes.getContext().openChild({ url: url, where: document.getElementById("followers-iframe-container"), messageHandlersFilter: gapi.iframes.CROSS_ORIGIN_IFRAMES_FILTER, messageHandlers: { '_ready': function(obj) { window.followersIframe.getIframeEl().height = obj.height; }, 'reset': function() { window.followersIframe.close(); followersIframeOpen("https://www.blogger.com/followers/frame/6942860372473365367?colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMwMDAwMDAiByMwMDAwMDAqByNGRkZGRkYyByMwMDAwMDA6ByMwMDAwMDBCByMwMDAwMDBKByMwMDAwMDBSByNGRkZGRkZaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26hl\x3den\x26origin\x3dhttps://njacingenlan.blogspot.com"); }, 'open': function(url) { window.followersIframe.close(); followersIframeOpen(url); }, 'blogger-ping': function() { } } }); } }); } followersIframeOpen("https://www.blogger.com/followers/frame/6942860372473365367?colors\x3dCgt0cmFuc3BhcmVudBILdHJhbnNwYXJlbnQaByMwMDAwMDAiByMwMDAwMDAqByNGRkZGRkYyByMwMDAwMDA6ByMwMDAwMDBCByMwMDAwMDBKByMwMDAwMDBSByNGRkZGRkZaC3RyYW5zcGFyZW50\x26pageSize\x3d21\x26hl\x3den\x26origin\x3dhttps://njacingenlan.blogspot.com"); </script></div> </div> </div> <div class='clear'></div> </div> </div><div class='widget Stats' data-version='1' id='Stats1'> <h2>Total Pageviews</h2> <div class='widget-content'> <div id='Stats1_content' style='display: none;'> <span class='counter-wrapper graph-counter-wrapper' id='Stats1_totalCount'> </span> <div class='clear'></div> </div> </div> </div><div class='widget HTML' data-version='1' id='HTML6'> <h2 class='title'>software that are useful for teachers</h2> <div class='widget-content'> <a href="http://maxima.sourceforge.net/">Maxima, a Computer Algebra System</a> <a href="http://www.anim8or.com/main/">Welcome to Anim8or</a> <a href="http://gcompris.net/-en-">GCompris</a> <a href="http://shatters.net/celestia/">Welcome to Celestia </a> <a href="http://www.tuxpaint.org/">Tux Paint</a> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML9'> <div class='widget-content'> <object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/tg9achAqcws?fs=1&hl=en_US" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed src="http://www.youtube.com/v/tg9achAqcws?fs=1&hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object> </div> <div class='clear'></div> </div></div> </div> <div class='clear'></div> <div class='twittop'> </div> <div id='twitter_div'> <ul id='twitter_update_list'></ul> </div> <script src='http://twitter.com/javascripts/blogger.js' type='text/javascript'></script> <script src='http://twitter.com/statuses/user_timeline/TWITTER-ID-TWITTER.json?callback=twitterCallback2&count=5' type='text/javascript'></script> <div class='clear'></div> <div class='cahaya5 no-items section' id='cahaya5'></div> <div id='sidebar'> <div class='sidebar2'> <div class='cahaya6 section' id='cahaya6'><div class='widget HTML' data-version='1' id='HTML15'> <h2 class='title'>history</h2> <div class='widget-content'> http://www.thenagain.info/webchron/glossary/absmonarch.html </div> <div class='clear'></div> </div><div class='widget Text' data-version='1' id='Text6'> <div class='widget-content'> <a style="font-weight: bold; color: rgb(0, 0, 102);" href="http://ubdays2009.blogspot.com/"></a><h1 style="color: rgb(153, 51, 153);" class="title"><a href="http://ubdays2009.blogspot.com/">UB DAYS 2009 </a></h1> </div> <div class='clear'></div> </div><div class='widget Text' data-version='1' id='Text5'> <div class='widget-content'> <h1><a href="http://www.philippinecountry.com/philippine_beach/panglao.html"><strong><em>Panglao island, Bohol</em></strong></a></h1> <a href="http://www.philippinecountry.com/philippine_beach/panglao.html"><em><span style="color: rgb(255, 255, 153);"><strong>"Little Paradise of Pure Hearts"</strong></span></em></a><br/><br/><h1><a href="http://www.philippinecountry.com/philippine_tourist_spot/rice_terraces.html"><strong><em>Banaue Rice Terraces Philippines</em></strong></a></h1> <strong><em></em></strong><br/> </div> <div class='clear'></div> </div><div class='widget Text' data-version='1' id='Text4'> <div class='widget-content'> <a href="http://www.luzpalma.com/Chocolate%20Hills%20in%20Bohol.html"><b><i><span style="font-size:85%;">Chocolate Hills -Bohol </span></i></b></a><br/><br/><h1><a href="http://www.mukamo.com/gallery/?a=chocolate-hills-bohol&i=420" title="Back to Mukamo Philippines"> Philippines</a><a href="http://www.mukamo.com/gallery/?a=chocolate-hills-bohol&i=420"> › </a><a href="http://www.mukamo.com/gallery/?a=chocolate-hills-bohol&i=420" title="Back to the index page.">Gallery</a></h1><br/> </div> <div class='clear'></div> </div><div class='widget Text' data-version='1' id='Text3'> <div class='widget-content'> <h1><a href="http://www.vote7.com/n7w/nature/finalists/puerto-princesa-underground-river">Puerto Princesa Subterranean River</a></h1><a href="http://www.puerto-undergroundriver.com/"><span>The official nominee of the Philippines to the New 7 Wonders of Nature</span></a><br/><br/> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML8'> <div class='widget-content'> <a href="http://quality.enr.state.nc.us/tools/fishbone.htm">Fishbone Diagram A Problem-Analysis Tool</a> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML7'> <div class='widget-content'> <a href="http://philosophy.hku.hk/think/sci/basic.php">Scientific reasoning</a> <a href="http://philosophy.hku.hk/think/sci/bayes-confirm.php">The Bayesian theory of confirmation</a> <h2><a href="http://philosophy.hku.hk/think/sci/mill.php">Mill's methods for identifying causes</a> </h2><h2><a href="http://philosophy.hku.hk/think/sci/analysis.php">Common causal relations</a> </h2><h2><a href="http://philosophy.hku.hk/think/sci/ce-diagram.php">Cause and effect diagrams</a> </h2><h2><a href="http://philosophy.hku.hk/think/sci/causalfallacies.php">Fallacies about causation</a> </h2><h1><a href="http://philosophy.hku.hk/think/creative/">Creative thinking</a></h1> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML3'> <h2 class='title'>Environmental Problems</h2> <div class='widget-content'> <a style="font-weight: bold;" href="http://http//library.thinkquest.org/26026/Environmental_Problems/acid_rain_-_solutions.html">acid rain</a> <a style="font-weight: bold;" href="http://www.omafra.gov.on.ca/english/engineer/facts/87-040.htm">soil erosion</a> <a style="font-weight: bold;" href="http://www.globalwarming.org/">global warming</a> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML2'> <div class='widget-content'> <h3 style="color: rgb(153, 51, 153);"><a href="http://www.mhxml.com/SC/Learning.htm">Semantic Learning and Vocabulary Structure</a></h3> <a style="color: rgb(51, 51, 255);" href="http://www3.hi.is/%7Ejoner/eaps/wh_ausub.htm"><strong>Derivative subsumption</strong>.</a> <a style="color: rgb(51, 51, 255);" href="http://en.wikibooks.org/wiki/The_Practice_of_Learning_Theories/Motivation">The Practice of Learning Theories/Motivation</a> <h3 style="color: rgb(51, 51, 255);"><a href="http://www.mhxml.com/SC/Learning.htm"> </a></h3> <a style="font-weight: bold; color: rgb(102, 0, 204);" href="http://en.wikipedia.org/wiki/Computer_simulation">Computer simulation</a> <a style="color: rgb(51, 51, 255);" href="http://www.raczynski.com/pn/pn.htm"> simulation software package</a> <a style="color: rgb(51, 51, 255);" href="http://www.havingasoftware.nl/"> three dimsim mechanics simulator </a> <span style="font-weight: bold; color: rgb(51, 51, 255);"></span><a style="color: rgb(102, 0, 204);" href="http://ocw.usu.edu/Instructional_Technology/Instructional_Games"><span style="font-weight: bold;">Instructional Games</span></a> <a style="color: rgb(51, 51, 255);" href="http://www.gpschools.org/ci/ce/elem/elcom/spring/games.htm">board games</a> <a style="color: rgb(51, 51, 255);" href="http://www.e-learningguru.com/knowledge_GameSim.htm">games and simulation</a> <a style="color: rgb(51, 51, 255);" href="http://www-personal.umich.edu/%7Eespring/bestPractices/games.html">IT best Practices</a> <a style="color: rgb(51, 51, 255);" href="http://fcit.usf.edu/mathvids/strategies/ig.html">math VIDS</a> <a style="color: rgb(102, 0, 204);" href="http://problem-solving.software.informer.com/"><span><span style="font-weight: bold;">Problem Solving Software</span></span></a> <a style="color: rgb(51, 51, 255);" href="http://www.superkids.com/aweb/pages/reviews/problem/">super kids educational review</a> <a style="color: rgb(51, 51, 255);" href="http://www.emteachline.com/eng/solution.htm">math problem solving</a> <a style="color: rgb(51, 51, 255);" href="http://www.freedownloadscenter.com/free/732188/">problem solving free download</a> <a style="color: rgb(102, 0, 204);" href="http://en.wikipedia.org/wiki/Multimedia"><span><span style="font-weight: bold;">Multimedia Encyclopedia</span></span></a> <a style="color: rgb(51, 51, 255);" href="http://www.springer.com/computer/information+systems/book/978-0-387-74724-8">springer</a> <a style="color: rgb(51, 51, 255);" href="http://www.uen.org/ucme/">Utah Collection</a> <a style="color: rgb(51, 51, 255);" href="http://encyclopedia-review.toptenreviews.com/grolier-multimedia-encyclopedia-review.html">groiler</a> <a style="color: rgb(51, 51, 255);" href="http://www.amazon.com/Encyclopedia-Multimedia-Borko-Furht/dp/038724395X">amazon.com</a> <a style="color: rgb(51, 51, 255);" href="http://cgi.ebay.ph/ws/eBayISAPI.dll?ViewItem&item=300318010336">eBay: childrem multimedia encyclopedia</a> <h1 style="color: rgb(51, 51, 255);"> </h1> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML10'> <div class='widget-content'> <span style="color: rgb(255, 255, 255); font-weight: bold;"></span><blockquote style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 255, 255); font-weight: bold;">http://www.webs.uidaho.edu/info_literacy/modules/module2/2_1.htm</span><span style="font-weight: bold; color: rgb(255, 255, 255);"> "></span></blockquote><span style="font-weight: bold; color: rgb(255, 255, 255);"></span> </div> <div class='clear'></div> </div></div> </div> <div class='sidebar1'> <div class='cahaya7 section' id='cahaya7'> <div class='widget Text' data-version='1' id='Text2'> <div class='widget-content'> <a href="http://phunchat.com/">FUNCHAT.COM</a> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML5'> <div class='widget-content'> <a href="http://www.glitter-graphics.com/"></a><a href="http://www.glitter-graphics.com/"><img border="0" style="width: 118px; height: 118px;" src="http://dl5.glitter-graphics.net/pub/592/592575p2k70ylnbr.gif"/></a> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML4'> <div class='widget-content'> <a href="http://www.glitter-graphics.com/"><img border="0" width="104" src="http://dl4.glitter-graphics.net/pub/705/705174u4jua46b4g.gif" height="152"/></a> </div> <div class='clear'></div> </div><div class='widget HTML' data-version='1' id='HTML1'> <div class='widget-content'> <a href="http://www.glitter-graphics.com/"><img border="0" width="150" src="http://dl6.glitter-graphics.net/pub/148/148976dnaarqok60.gif" height="20"/></a> <a href="http://www.glitter-works.org/" target="_blank"></a> <a style="color: rgb(51, 0, 153);" href="http://www.legendoftheseeker.blogspot.com/">legend of the seeker main site</a> <a style="color: rgb(51, 0, 153);" href="http://www.blogger.com/%3Cobject%20width=%22425%22%20height=%22344%22%3E%3Cparam%20name=%22movie%22%20value=%22http://www.youtube.com/v/1RkZ4lsRTq4&hl=en&fs=1&%22%3E%3C/param%3E%3Cparam%20name=%22allowFullScreen%22%20value=%22true%22%3E%3C/param%3E%3Cparam%20name=%22allowscriptaccess%22%20value=%22always%22%3E%3C/param%3E%3Cembed%20src=%22http://www.youtube.com/v/1RkZ4lsRTq4&hl=en&fs=1&%22%20type=%22application/x-shockwave-flash%22%20allowscriptaccess=%22always%22%20allowfullscreen=%22true%22%20width=%22425%22%20height=%22344%22%3E%3C/embed%3E%3C/object%3E">legend of the seeker video compilation</a> <a href="http://www.glitter-graphics.com/"><img border="0" width="156" src="http://dl2.glitter-graphics.net/pub/826/826332n8wm27bzru.gif" height="13"/></a> <a href="http://www.glitter-works.org/" target="_blank"></a> </div> <div class='clear'></div> </div> <div class='widget BlogArchive' data-version='1' id='BlogArchive2'> <h2>archive</h2> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive2_ArchiveList'> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=close&toggle=YEARLY-1325404800000&toggleopen=MONTHLY-1328083200000'> <span class='zippy toggle-open'>▼ </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2012/'> 2012 </a> <span class='post-count' dir='ltr'>(19)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1341126000000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2012/07/'> July </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1335855600000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2012/05/'> May </a> <span class='post-count' dir='ltr'>(3)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1333263600000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2012/04/'> April </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate expanded'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=close&toggle=MONTHLY-1328083200000&toggleopen=MONTHLY-1328083200000'> <span class='zippy toggle-open'>▼ </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2012/02/'> February </a> <span class='post-count' dir='ltr'>(6)</span> <ul class='posts'> <li><a href='https://njacingenlan.blogspot.com/2012/02/technology-and-livelihood-education-iv.html'>Technology and Livelihood Education IV (Informatio...</a></li> <li><a href='https://njacingenlan.blogspot.com/2012/02/access-html.html'>access, html</a></li> <li><a href='https://njacingenlan.blogspot.com/2012/02/fall-of-tokugawa-shogunate.html'>The Fall of the Tokugawa Shogunate</a></li> <li><a href='https://njacingenlan.blogspot.com/2012/02/meiji-restorationrevolution.html'>Meiji Restoration/Revolution</a></li> <li><a href='https://njacingenlan.blogspot.com/2012/02/taiping-rebellion.html'>Taiping Rebellion</a></li> <li><a href='https://njacingenlan.blogspot.com/2012/02/chronology-of-second-world-war.html'>Chronology of the Second World War</a></li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1325404800000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2012/01/'> January </a> <span class='post-count' dir='ltr'>(7)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=YEARLY-1293868800000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2011/'> 2011 </a> <span class='post-count' dir='ltr'>(43)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1322726400000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2011/12/'> December </a> <span class='post-count' dir='ltr'>(14)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1320130800000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2011/11/'> November </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1314860400000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2011/09/'> September </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1312182000000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2011/08/'> August </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1306911600000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2011/06/'> June </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1298966400000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2011/03/'> March </a> <span class='post-count' dir='ltr'>(4)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1296547200000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2011/02/'> February </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1293868800000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2011/01/'> January </a> <span class='post-count' dir='ltr'>(16)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=YEARLY-1262332800000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2010/'> 2010 </a> <span class='post-count' dir='ltr'>(11)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1291190400000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2010/12/'> December </a> <span class='post-count' dir='ltr'>(11)</span> </li> </ul> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=YEARLY-1230796800000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2009/'> 2009 </a> <span class='post-count' dir='ltr'>(21)</span> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1254380400000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2009/10/'> October </a> <span class='post-count' dir='ltr'>(6)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1251788400000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2009/09/'> September </a> <span class='post-count' dir='ltr'>(12)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1249110000000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2009/08/'> August </a> <span class='post-count' dir='ltr'>(2)</span> </li> </ul> <ul class='hierarchy'> <li class='archivedate collapsed'> <a class='toggle' href='//njacingenlan.blogspot.com/2012/02/access-html.html?widgetType=BlogArchive&widgetId=BlogArchive2&action=toggle&dir=open&toggle=MONTHLY-1246431600000&toggleopen=MONTHLY-1328083200000'> <span class='zippy'> ► </span> </a> <a class='post-count-link' href='https://njacingenlan.blogspot.com/2009/07/'> July </a> <span class='post-count' dir='ltr'>(1)</span> </li> </ul> </li> </ul> </div> </div> <div class='clear'></div> </div> </div></div> </div> <div class='clear'></div> </div><!-- sidebar --> </div> <div class='clear'></div> </div> <div id='footer'> <small><span class='fleft'> Copyright 2009 | <a href='https://njacingenlan.blogspot.com/'>LINKAGE TO THE FUTURE</a> </span> <span class='fright'> MobiPress Template designed by the <a href='http://www.web2feel.com/'>Jinsona Design</a> and XML coded by <a href='http://www.cahayabiru.com/'>CahayaBiru.com</a></span> </small> </div> </div> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/745881458-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY7GYrClcQDxuvTIURwitc-U96ARug:1735436975150';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d6942860372473365367','//njacingenlan.blogspot.com/2012/02/access-html.html','6942860372473365367'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '6942860372473365367', 'title': 'LINKAGE TO THE FUTURE', 'url': 'https://njacingenlan.blogspot.com/2012/02/access-html.html', 'canonicalUrl': 'http://njacingenlan.blogspot.com/2012/02/access-html.html', 'homepageUrl': 'https://njacingenlan.blogspot.com/', 'searchUrl': 'https://njacingenlan.blogspot.com/search', 'canonicalHomepageUrl': 'http://njacingenlan.blogspot.com/', 'blogspotFaviconUrl': 'https://njacingenlan.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'en', 'localeUnderscoreDelimited': 'en', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22LINKAGE TO THE FUTURE - Atom\x22 href\x3d\x22https://njacingenlan.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22LINKAGE TO THE FUTURE - RSS\x22 href\x3d\x22https://njacingenlan.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22LINKAGE TO THE FUTURE - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/6942860372473365367/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22LINKAGE TO THE FUTURE - Atom\x22 href\x3d\x22https://njacingenlan.blogspot.com/feeds/7210146208446607887/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/361ce9cf7a112c52', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': 'Get link', 'key': 'link', 'shareMessage': 'Get link', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': 'Share to Facebook', 'target': 'facebook'}, {'name': 'BlogThis!', 'key': 'blogThis', 'shareMessage': 'BlogThis!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': 'Share to X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': 'Share to Pinterest', 'target': 'pinterest'}, {'name': 'Email', 'key': 'email', 'shareMessage': 'Email', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27en\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': 'Read more', 'pageType': 'item', 'postId': '7210146208446607887', 'postImageUrl': 'myImage.gif', 'pageName': 'access, html', 'pageTitle': 'LINKAGE TO THE FUTURE: access, html'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': 'Edit', 'linkCopiedToClipboard': 'Link copied to clipboard!', 'ok': 'Ok', 'postLink': 'Post Link'}}, {'name': 'template', 'data': {'name': 'custom', 'localizedName': 'Custom', 'isResponsive': false, 'isAlternateRendering': false, 'isCustom': true}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'access, html', 'description': 'What is Microsoft Access? \r \r MS Access is a Database Management System. It handles data management tasks the same way as MS Word handles do...', 'featuredImage': 'https://lh3.googleusercontent.com/blogger_img_proxy/AEn0k_saUqu8rzs1clzkkH_7OoSLs36fz4BESfzfOktn8jhmb0nAo-cwz2byOvhymKbkWGqAAr0', 'url': 'https://njacingenlan.blogspot.com/2012/02/access-html.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 7210146208446607887}}]); _WidgetManager._RegisterWidget('_NavbarView', new _WidgetInfo('Navbar1', 'navbar', document.getElementById('Navbar1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text1', 'cahaya16', document.getElementById('Text1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'main', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/3846405171-lbx.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/1964470060-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML14', 'cahayabiru3', document.getElementById('HTML14'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML13', 'cahayabiru3', document.getElementById('HTML13'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML12', 'cahayabiru3', document.getElementById('HTML12'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML11', 'cahayabiru3', document.getElementById('HTML11'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'cahayabiru3', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FollowersView', new _WidgetInfo('Followers1', 'cahayabiru3', document.getElementById('Followers1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_StatsView', new _WidgetInfo('Stats1', 'cahayabiru3', document.getElementById('Stats1'), {'title': 'Total Pageviews', 'showGraphicalCounter': true, 'showAnimatedCounter': false, 'showSparkline': false, 'statsUrl': '//njacingenlan.blogspot.com/b/stats?style\x3dBLACK_TRANSPARENT\x26timeRange\x3dALL_TIME\x26token\x3dAPq4FmC9KowxePKweNtICvgqkBbo2EO2jvDwDgRTGJCCy7m-89LHH0g6WJi6Q3m4adHNGaNN67Khn3EwvCVtBexSAtllrTC_xQ'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML6', 'cahayabiru3', document.getElementById('HTML6'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML9', 'cahayabiru3', document.getElementById('HTML9'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML15', 'cahaya6', document.getElementById('HTML15'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text6', 'cahaya6', document.getElementById('Text6'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text5', 'cahaya6', document.getElementById('Text5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text4', 'cahaya6', document.getElementById('Text4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text3', 'cahaya6', document.getElementById('Text3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML8', 'cahaya6', document.getElementById('HTML8'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML7', 'cahaya6', document.getElementById('HTML7'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML3', 'cahaya6', document.getElementById('HTML3'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML2', 'cahaya6', document.getElementById('HTML2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML10', 'cahaya6', document.getElementById('HTML10'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_TextView', new _WidgetInfo('Text2', 'cahaya7', document.getElementById('Text2'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML5', 'cahaya7', document.getElementById('HTML5'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML4', 'cahaya7', document.getElementById('HTML4'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HTMLView', new _WidgetInfo('HTML1', 'cahaya7', document.getElementById('HTML1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive2', 'cahaya7', document.getElementById('BlogArchive2'), {'languageDirection': 'ltr', 'loadingMessage': 'Loading\x26hellip;'}, 'displayModeFull')); </script> </body> </html>