HTML Attribute In this lesson, we’re going to learn about HTML attributes An attribute is the one that provides information about HTML elements. HTML attributes are always found in the opening tags. It starts after the keyword of your opening…
File Management System in PHP and MySQL
File management system is a file system that is used to organize and keep track of files. Users need not browse through network folder but instead are given instant result, and are provided a system where files can be accessed…
Computer-Assisted Instruction using Moodle
Computer-Assisted Instruction using Moodle Moodle allows educators to create online courses, which students can access as a virtual classroom. A typically Moodle home page will include a list of participants (including the teacher and students) and a calendar with a…
Data Types in Visual Basic 6.0
Data type is a storage format that can contain range of values. A data type in simplest form is to determine what kind of data it can store. Just like every other programming languages, Visual Basic 6 has its own…
Science Learning Games using Visual Basic 6
The Science Learning Games was developed to enhance the interest of students in their science subject and to give science teacher/s another method of teaching. The researchers used Waterfall Model in developing the Science game. In this methodology, the software…
HTML Page Structure
HTML Page Structure This lesson will discuss about the basic structure of a HTML document. Below is an example of simple HTML page. <html> <head> <title>This is my HTML document</title> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p>…
Java reserved words
In computer programming, reserved words are those words that are already used by the syntax of that programming language; it can’t be used as identifiers (e.g., name of variable, function name, methods and classes). Java has its own reserved words. The…
Visual Basic 6 IDE (Integrated Development Environment)
Before I show you the IDE of Visual Basic 6 let us first define what IDE (Integrated Development Environment) is. (Integrated Development Environment) is a term used in programming that facilitates application development. It is a GUI based application that…
HTML Tags and Elements
HTML Tags and HTML Elements HTML Tags and HTML elements they are commonly defined as same thing, but actually they’re not. HTML Tags are surrounded with brackets (<) (>) and in between those bracket is what we call keywords. The…
Introduction to C#
Getting Started with C# C# (pronounced as C Sharp) is one of the programming language developed by Microsoft that is implemented in .Net Framework so therefore you must install the .Net Framework on your unit to run the applications written…