A list is any information displayed in an organized linear manner. Types of lists HTML provides the following three types of lists Ordered lists Unordered lists Definition lists Ordered lists This type of HTML lists provides numbering to the list item, it labels each item on the list with either numbers, alphabets or roman numbers.Continue reading “HTML LISTS”
Author Archives: jamilambarak
HTML ATTRIBUTES
Attributes provides extra information to the HTML elements or tags They are mainly added at the opening/start tag of an element The syntax of attributes is <element name of attribute = “value”> content </element> Types of Attributes HTML has a wide range of attributes, below I will discuss a few commonly used HTML attributes othersContinue reading “HTML ATTRIBUTES”
OBJECT MODELING TECHNIQUE (OMT)
The object-modeling technique (OMT) is an object modeling language for software modeling and designing. It was developed by Rumbaugh, Blaha, Premerlani, Eddy and Lorensen as a method to develop object-oriented systems, and to support object-oriented programming. THE RAMBAUGH OMT The purposes of modeling according to Raumbaugh (1991) are: testing physical entities before building them (simulation),Continue reading “OBJECT MODELING TECHNIQUE (OMT)”
OBJECT ORIENTED SYSTEM DEVELOPMENT LIFE CYCLE
The Object Oriented Methodology of Building Systems takes the objects as the basis. first the system to be developed is observed and analyzed and the requirements are defined as in any other method of system development. Once this is done, the objects in the required system are identified. For example, in case of a BankingContinue reading “OBJECT ORIENTED SYSTEM DEVELOPMENT LIFE CYCLE”
EXERCISE
Theoretical Exercise Differentiate between the Structural markup and the Sematic Markups Using the appropriate tags explain any THREE types of Structural and Semantic Markups Explain the following tags <blockquote> <q> <s> <abbr> <em> 4. Using examples explain what is an empty tag 5. What is the purpose of white spaces in a HTML source code?Continue reading “EXERCISE”
FORMATTING TEXT ON WEB PAGES (PART 2)
SEMANTIC MARKUP Semantic markups are composed of the following Strong and Emphasis Quotations Abbreviations and Acronyms Citations and Definitions i. Strong and Emphasis In HTML to display content with strong emphasis the <strong> element is used browsers will show the contents of a <strong>element in bold. Example <!DOCTYPE html> <html> <head><title>News</title></head> <body> <p> <strong>Beware</strong > Continue reading “FORMATTING TEXT ON WEB PAGES (PART 2)”
FORMATTING TEXT ON WEB PAGES (PART 1)
A web page is created using tags (known as markup) to the contents of the page. The tags provide extra meaning and allow browsers to show users the structure and the content of the page. Other than the opening and closing tags HTML has other categories of tags as follows Structural Markup – these areContinue reading “FORMATTING TEXT ON WEB PAGES (PART 1)”
HOW TO CREATE A WEB PAGE ON A PC
The following are the steps for creating a web page on a windows PC Start up the notepad program, you can start it up by just searching it on the search tab on the desktop. You can download notepad++ here https://notepad-plus-plus.org/downloads/ since it has advanced features than the default notepad and install it. When oneContinue reading “HOW TO CREATE A WEB PAGE ON A PC”
Structure of a HTML page
Every web page has the following elements Doctype Declaration Head Title Html Body Doctype Declaration – This defines the document type, all HTML files needs to have a DOCTYPE which lets the browser know how the web document should be interpreted. The doctype declaration is written as <!DOCTYPE html> Head – The head element usuallyContinue reading “Structure of a HTML page”
INTRODUCTION TO HTML
HTML stands for Hyper Text Markup Language A markup language is a set of markup tags and HTML documents are described by HTML tags Each HTML tag describes different document content HTML Tags – these are the hidden keywords within a web page that defines how the browser must format and display the content. HTMLContinue reading “INTRODUCTION TO HTML”
