This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Pages

Friday, June 28, 2013

Perguruan Tinggi di Jakarta          Fakultas Teknologi Informasi Universitas Budi Luhur. merupakan salah satukampus terbaik yang ada di Indonesia. Lokasi nya beralamat di Jl. Ciledug Raya, Petukangan Utara, Jakarta Selatan , 12260. DKI Jakarta, Indonesia. Telp: 021-585 3753 Fax: 021-585 3752. Kampus ini merupakan salah satu sebagai perguruan tinggi di Jakarta, Fakultas...

Kampus Teknologi Informasi di Jakarta salah satu nya adalah Universitas Budiluhur, dari sekian banyak Universitas di Jakarta, UBL termasuk dalam kampus terbaik di Jakarta. Universitas Budi Luhur memiliki  filosofi, “cerdas berbudi luhur adalah dua hal yang tidak terpisahkan, kecerdasan tanpa dilandasi budi luhur akan cenderung digunakan untuk membodohi dan mencelakakan orang lain, sebaliknya budi luhur tanpa diimbangi kecerdasan...

Sunday, March 17, 2013

The CSS Box Model

All HTML elements can be considered as boxes. In CSS, the term "box model" is used when talking about design and layout. The CSS box model is essentially a box that wraps around HTML elements, and it consists of: margins, borders, padding, and the actual content. The box model allows us to place a border around elements and space elements in relation to other elements. The image below illustrates the box model: Explanation of the different...

Table Borders

To specify table borders in CSS, use the border property. The example below specifies a black border for table, th, and td elements: table, th, td{border: 1px solid black...

Different List Item Markers

The type of list item marker is specified with the list-style-type property: ul.a {list-style-type: circle;}ul.b {list-style-type: square;}ol.c {list-style-type: upper-roman;}ol.d {list-style-type: lower-alpha;} Some of the values are for unordered lists, and some for ordered lis...

List

In HTML, there are two types of lists: unordered lists - the list items are marked with bullets ordered lists - the list items are marked with numbers or letters With CSS, lists can be styled further, and images can be used as the list item marke...

Styling Links

Links can be styled with any CSS property (e.g. color, font-family, background, etc.). Special for links are that they can be styled differently depending on what state they are in. The four links states are: a:link - a normal, unvisited link a:visited - a link the user has visited a:hover - a link when the user mouses over it a:active - a link the moment it is clicked a:link {color:#FF0000;}      /* unvisited link */a:visited {color:#00FF00;}  /* visited link */a:hover {color:#FF00FF;}  /* mouse over link...