Posts

CODING WITH HTML 2 - IMAGES, LINKS AND ACCESSIBILITY SS1 NOTE

Image
                                                      CODING WITH HTML 2 IMAGES, LINKS AND ACCESSIBILITY  HTML page to include images <img>  and hyperlinks <a href> Introduction Web pages are more attractive and useful when they contain images and links. Images help to communicate information visually, while hyperlinks connect users to other web pages or resources. When designing websites, accessibility should also be considered to ensure that all users can access and understand the content.   Accessibility in Web Design Meaning of Accessibility Accessibility refers to the practice of designing websites so that all users, including people with disabilities, can access and use them effectively. Importance of Accessibility Makes websites available to everyone. Assists visually impaired users through screen...

THE INTERNET IV - INTERNET ENVIRONMENT - LUNCH WEB BROWSER AND IDENTIFY THE ICON

Image
 CHARACTERISTICS FEATURES OF A WEB BROWSER Common features of a Web Browser are: 1. Address/Search Bar  2. Scroll/Arrow Button 3. Forward Button 4. Stop Button 5. Refresh Button 6. Bookmarks 7. Home Button 1.      Address/Search Bar :  the address bar (also location bar or URL bar) is  the element that shows the current URL . The user can type a URL into it to navigate to a chosen website. 2.  Scroll/Arrow: This    is clicked in order to scroll the screen in the corresponding direction 3.    Back and forward buttons : This  will take the user to the previous or the next page they were on. 4. Stop:  a button which makes a Web cease communication with a Web server, stopping a page from loading. 5.  Refresh :  a button which can be used to reload a Web page. 6.  Bookmarks: Bookmarks  allow a user to select specific, predefined-by-the-user websites. 7.  Home Button:  when selected, will bring...

THE INTERNET 3 - BENEFITS AND ABUSES OF THE INTERNET - JS2 NOTES

Image
  THE INTERNET 3 BENEFITS AND ABUSES OF THE INTERNET                           BENEFITS OF THE INTERNET 1. It enables us to share resources globally 2. Access to information in a fast manner 3. It is cost effective 4. It allows online banking transactions 5. E- learning (online education) 6. E- friends (online friends) 7. E- entertainment 8. E- commerce (online shopping) 9.  Playing games 10. For Easy communication               ABUSES/ DISADVANTAGES   OF THE INTERNET 1. It is used by imposters to defraud people 2. Piracy of Software 3. Exposure to pornography 4. Hacking :  the gaining of unauthorized access to data in a system 5. Plagiarism :  the practice of taking someone else's work or ideas and passing them off as one's own. 6. Computer Virus :   malicious software, or malware, that spreads between computers and causes damage to data and software 7...

PROGRAM DEVELOPMENT : DEFINITION AND CHARACTERISTICS OF A GOOD PROGRAM - SS2

Image
  PROGRAM DEVELOPMENT 1-2 DEFINITION,CHARACTERISTICS OF A GOOD PROGRAM, AND PRECAUTIONS IN WRITING PROGRAM. Definition of Program A program is a set of instructions that are executed by the CPU. A program can also be defined as an organized list of instructions that when executed cause the computer to behave in a predetermined manner. Without a program the computer is useless. Programs are written in computer programming language such as: PYTHON, PHP, JAVASCRIPT, CSS e.t.c Characteristic of a Good Program The following are characteristics of a good program. 1.  Accuracy:  Program should be sufficiently accurate to get the desired results. 2.  Extensibility:  this means that you should design the program so that you can add and remove an element from your program without disturbing the underlying structure of the program. 3.  Maintainability:  this is making your code easy to update 4.  Efficiency:  a good program should be designed to use the...

CODING WITH HTML 1 -INTRODUCTION - DESCRIBE THE PURPOSE OF HTML AND TAGS WHEN DESIGNING A WEBSITE

Image
  CODING WITH HTML 1  INTRODUCTION DESCRIBE THE PURPOSE OF HTML AND TAGS WHEN DESIGNING A WEBSITE,  CREATE A SIMPLE WEB PAGE USING BASIC TAGS INTRODUCTION What is HTML? HTML stands for Hyper Text Markup Language HTML is the standard markup language for creating Web pages HTML describes the structure of a Web page HTML consists of a series of elements HTML elements tell the browser how to display the content HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. A Simple HTML Document Example <!DOCTYPE html> < html > < head > < title > Page Title < /title > < /head > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html > Example Explained The <!DOCTYPE html> declaration defines that this document is an HTML5 document The <html> element is the root element of an ...

INTRODUCTION TO DATABASE - MEANING OF DATABASE, DIFFERENCES BETWEEN DATA AND INFORMATION, ADVANTAGES OF DATABASE - JS1 NOTES

Image
  Introduction to Database Meaning of Database,  Differences Between Data and Information, Advantages of Database Meaning of Database A database is an organized collection of related data stored in a computer system so that it can be easily accessed, managed, and updated. A database helps people keep records properly and find information quickly. Examples of Databases Common examples of databases are: a. School records database b. Hospital database c. Library database d. Bank database e. Student attendance database Differences Between Data and Information Data Information 1. Raw facts and figures e.g 75, A1 Processed and meaningful facts e.g Lagos is a state in Nigeria 2. Not Organized Organized and understandable 3. May not have meaning Has meaning 4. Used as input Used for decision making   Advantages of Database 1. Fast acce...

Database Management System – Definition, Basic Database Terminologies, Forms of Database (SS3 NOTES)

Image
  Database Management System  Definition, Basic Database Terminologies, Forms of Database Definition of Database and DBMS Database is a collection of related data organized for rapid search and retrieval. It can also be defined as a persistent, logically coherent collection of inherently meaningful data, relevant to some aspects of the real world. DBMS (Data Base Management System) :  DBMS is an application software that controls the data in the database, including overall organization, storage, retrieval, security and data integrity. Examples of DBMS Packages (i) Dbase (ii) Rbase (iii) MS Access (iv) Oracle (v) Paradox (vi) MYSQL Server (vii) SyBase (viii) FOXPRO (ix) IDMS (x) System 2000. (xi) Ingres (xii) Postgres (xiii) NoSQL Basic Database Terminologies (i) Field:  A field is a specific item of information containing a homogenous set of values throughout the table. Fields appear as columns in a table and as cells in a form. (ii) Record:  an individual listi...