Thursday, March 29, 2012

Displaying Image in HTML

Good Morning All ya keep the spirit!
 
 
After yesterday we already know the basic structure of html, now we will try to insert an image into the html structure. 
whatever you want will show on your browser, you must install the script on <body>. 
Okay this is a script to display images.

<img src="images.jpg" width="104" height="142" />

how to use them is as follows, add this script in <body>

 <html>
 <head>
 </head>
 <body>
 <img src="images.jpg" width="104" height="142" />
 </body>
 </html>

Well, we'll go to the next material, wait for it.

Wednesday, March 28, 2012

The initial step

Greetings to you all,

this time we will be trying to create a simple website but before you have to have the necessary software,
  The senior software usually wear very quickly because of its very small size we need to use notepad + + and also xampp
  so be prepared, after you have both the software now you should know the basic structure of html

  html structure
<html>
<head>
<title>
</ title>
</ head>
<body>
</ html>

Please be listened to carefully



Tuesday, November 1, 2011

Syntax CSS

1 selector, 1 property, 1 value.

Format  CSS:
selector { property: value }
Selector to indicate which parts are going to set up / formatted.

Property to show, the (property) of the selector who want to set.

Value is the value of its settings.

Syntax example:
h1 { color: red } 
 The example above shows
Selector: h1
Property: color
Value: red
 If translated into Indonesian sentence roughly like this: Set the color of h1 to red (red).