Published Articles

lesson

Java Output

In the previous lesson, you saw an example of println() which is used to output text (information) on the screen. It is very important to wrap the message in double quotes. The following example will output “Hello, world!” to the screen. Read more...

tutorial

test6768

Here is what you need to do! Read more...

lesson

Types of CSS

There are three types of CSS. Inline CSS Internal or Embedded CSS External CSS 1. Inline CSS Inline CSS Read more...

lesson

Your First Styled Webpage

CSS is defined by a collection of style properties. To style an HTML element, you use the attribute “style”. The value of this attribute consists of one or more styling properties defined by “property:value;” as demonstrated i Read more...

subject

Introduction to CSS

CSS (Cascading Style sheet) is used to describe how HTML elements are displayed on the screen. In other words, HTML describes the content of a web page while CSS controls its style, design and layout. Some examples of styles include color, background Read more...

lesson

HTML Images

A link is an HTML element that allows users to navigation from web page to web page. The link element is defined by the letter a. The attribute href is used to define the destination page. To add a link to your web page, you use <a href=”www Read more...