about 1 month ago - No comments
Today we’re going to talk about list styles. Lists are a vital commodity to web site creation. Most side-navigation menus and inline menus are actually lists that are simply listing the things we want them to. From there, we can add styles to these lists and manipulate them however we please.
Lists
In HTML there are two More >
about 1 month ago - No comments
Today we are going to talk about List types in HTML. There are three lists that HTML supports:
Unordered Lists
Ordered Lists
Definition Lists
Unordered Lists
An unordered List is a list that have bullets in front of the list item (normally little black circles). The Unordered List starts with a <ul> tag and each new item starts with an More >
about 1 month ago - No comments
Today we’re going to talk about HTML Tables! Tables were created in May of 1996 as in update to HTML 2.0. Since then, tables were a way for us to layout our websites and/or information in a document. Frames became popular with HTML 3.0, HTML 3.2, and especially HTML 4.0. After Framesets fizzled out tables More >
about 1 month ago - No comments
Basics of HTML Part #3 is good to know before continuing on with this tutorial!
Today we’re going to talk about the img tag and the src attribute. This very important because this element allows us to input images in our web page and also input images from another web server or folder on our web More >
about 2 months ago - No comments
Today we’re going to create a top navigation menu and side menu in CSS. This is like any website menu that we would see on most websites.
Inline Menu
This is an example of a website menu:
We can see that the menu is entirely inline and is actually really just an unordered list. Consider the following code:
#menu More >
about 2 months ago - No comments
Pseudo-elements are used to add special effects to some html elements.
Pseudo-elements are very much like pseudo-classes. The syntax for pseudo-elements is like pseudo-classes:
selector:pseudo-element {property:value;}
We can also use class selectors with our pseudo-elements:
selector.class:pseudo-element {property:value;}
Pseudo-elements
Since pseudo-elements exist to give some html elements some flair, we have a few special pseudo-elements that we need to be familiar with.
:first-line
As More >
about 2 months ago - 1 comment
Pseudo-classes are little snippets of code that will add additional effects to some selectors.
Pseudo-classes
The syntax for Pseudo-classes is very much like the syntax for css:
selector {property:value;} /*CSS Syntax*/
selector:pseudo-class { /*Pseudo-class Syntax*/
property:value;
property:value;
}
:link, :visited, :active, :hover
A very widely used example of Pseudo-classes is adding styles to links. More >
about 2 months ago - No comments
This is a CSS reference guide of the most common properties that are used in style sheets.
about 2 months ago - No comments
BB Code is a common way for format blog posts, forum posts, and comments on those posts. BB Code is an acronym for bulletin board code. If you are familiar with HTML code then BB Code will be very easy for you to understand. If not then need not worry, we will be covering More >
about 2 months ago - No comments
In this tutorial we’re going to talk about the float property. For this tutorial you will need to be familiar with the Basics of CSS and you should be familiar with the Advanced CSS tutorials until this point.
Float Property
The float property allows for an element to be pushed to the left or the right so More >