Desain Web: Konsep, Konteks, Konten, Prinsip Desain

Berikut ini adalah materi kuliah untuk mata kuliah Desain Web di Program Teknologi Informasi dan Ilmu Komputer. Adapun materi terkait yang terdapat dalam pertemuan I ini antara lain: Website and internet concept Web browser rendering process Phases of a web project Start with a plan Defining audience Gathering content Choosing the right tools Web safe color Good design and bad design Top No-Nos in the web Good deeds in web design Continue reading Desain Web: Konsep, Konteks, Konten, Prinsip Desain

Perfect Full Element Background Image With CSS3

An HTML element can have a background image. Normally we set it no-repeat, repeat-x, or repeat-y, regardless it is centered or x-y-positioned. There is time we may want it to be covered all over an element, regardless it’s size. Now, we can do this purely through CSS thanks to the background-size property now in CSS3. We’ll use the html element (better than body as it’s always at least the height Continue reading Perfect Full Element Background Image With CSS3

CSS Box Model

HTML elements consists of inline and block elements. All of them are box models even for inline elements such as <em>, <span>, or <strong>. Each box has it’s own (default) border, margin, and padding size. Put the following CSS code to your web pages to see (the box) by yourself temporarily: * { border: 1px solid red !important; } With the above CSS, all elements will have a 1px solid Continue reading CSS Box Model