< TIK for SMA
   

A N G G O T A

YAHOO MESSENGER

MESSAGE

VALUTA ASING

 
 
 

KISI KISI ULANGAN SEMESTER

01 December, 2007
Ulangan akhir semester ganjil akan segera dimulai. Siswa harus segera mempersiapkan diri segala sesuatunya mulai dari kesehatan sampai dengan belajarnya.
Percalah Diri dengan segala kemampuanmu, jangan suka "ngepek". . .
Jika kalian ingin berhasil ya belajar.
Nich ada kisi kisi untuk membantu belajar kalian. . .
segera di download dan segera pelajari. . . .
Selamat Belajar dan Good Luck !!!

Kisi kisi

Labels:


Read More . . .
posted by tik_sma @ 10:32 AM   0 comments

ShortCUt Photoshop

30 November, 2007
Kali ini kita akan membahas mengenai keyboard shortcut yang sering digunakan dan harus dikuasai dalam menggunakan Photoshop. Dengan menggunakan shortcut-shortcut ini kita dapat mempercepat proses kerja dan akan sangat memudahkan kita dalam bekerja.
Selanjutnya kita akan membahas beberapa shortcut yang biasanya paling sering digunakan dalam bekerja menggunakan Photoshop. Perlu anda ketahui, shortcut-shortcut yang ada dibawah ini wajib untuk anda kuasai.
Shortcut-shortcut tersebut antara lain :
Ctrl + Z / Ctrl + Alt + ZMerupakan shortcut dari Undo yang digunakan untuk membatalkan perintah. Ctrl + Z untuk membatalkan perintah terakhir sedangkan Ctrl + Alt + Z untuk membatalkan sampai dengan 10 perintah terakhir.

Ctrl + D
Shortcut yang digunakan untuk mematikan seleksi/selection.

Ctrl + C
Merupakan shortcut untuk meng-copy obyek.

Ctrl + X
Merupakan shortcut untuk meng-cut obyek.

Ctrl + V
Merupakan shortcut untuk mem-paste obyek yang telah di-copy/di-cut.


Untuk lebih lanjut belajar mengenai shortcut photoshop dapat anda download
disini, atau bisa dilihat dalam menu download.

Selamat mencoba dan berkreasi

Labels:


Read More . . .
posted by tik_sma @ 12:17 PM   0 comments

The Outline of Mid Semester Test

24 September, 2007
The Outline of Mid Semester Test :

1. Learn the HTML Tag
2. The numbers of multiple choice tests are 20
3. The numbers of Essay tests are 5


Example:

Multiple Choice:

1. If we want to give a word bold printed, which tag do we use?
a. < html> . . . </html> c. <title> . . . </title>
b. <start> . . . </start> d. <b> . .. </b>
2. The Tag we use to make a horizontal line is………
a. <h1> . . .</h1> c. <hr> . . . . </hr>
b. <br> d. <p> . . . </p>


Essay:

1. Please explain what does it mean by HTML!
2. Please explain, what does it mean by home page!

Labels:


Read More . . .
posted by tik_sma @ 12:12 PM   0 comments

Link

20 September, 2007
The Anchor Tag and the Href Attribute

HTML uses the <a> (anchor) tag to create a link to another document.



An anchor can point to any resource on the Web: an HTML page, an image, a sound file, a movie,
etc.



The syntax of creating an anchor: 








<a href="url">Text to be displayed</a>



The <a> tag is used to create
an anchor to link from, the href attribute is used to address the document
to link to, and the words between the open and close of the anchor tag will be displayed as a hyperlink.



This anchor defines a link to W3Schools:









<a href="http://www.w3schools.com/">Visit W3Schools!</a>




The line above will look like this in a browser:



Visit W3Schools!






The Target Attribute


With the target attribute, you can define where the linked document will be
opened.


The line below will open the document in a new browser window:









<a href="http://www.w3schools.com/"
target="_blank">Visit W3Schools!</a>








The Anchor Tag and the Name Attribute



The name attribute is used to create a named anchor. When using named anchors
we can create links that can jump directly into a specific section on a page, instead of
letting the user scroll around to find what he/she is looking for.



Below is the syntax of a named anchor:








<a name="label">Text to be displayed</a>


The name attribute is used to create a named anchor. The name of the anchor
can be any text you care to use.



The line below defines a named anchor:








<a name="tips">Useful Tips Section</a>


You should notice that a named anchor is not displayed in a special way.



To link directly to the "tips" section, add a # sign and the name of the anchor to the end of
a
URL, like this:








<a href="http://www.w3schools.com/html_links.asp#tips">
Jump to the Useful Tips Section</a>



A hyperlink to the Useful Tips Section from WITHIN the file "html_links.asp"
will look like this: 








<a href="#tips">Jump to the Useful Tips Section</a>

Labels:


Read More . . .
posted by tik_sma @ 1:43 PM   0 comments

Table

19 September, 2007
This HTML table tutorial demonstrates how to create tables in HTML. It assumes you know how to create an HTML page.

Basic table tags


In HTML, you create tables using the table tag, Ini in conjunction with the trand td tags. Although there are other tags for creating tables, these are the basics for creating a table in HTML.









Type this HTML code...

<table border="1">
<tr>
<td>Table cell 1</td><td>Table cell 2</td>
</tr>
</table>


It should result in something like this in your browser...




Table cell 1Table cell 2



You'll notice that we added a border attribute to the table tag. This particular attribute allows us to specify how thick the border will be. If we don't want a border we can specify 0 (zero). Other common attributes you can use with your table tag include

Ini adalah akhir postingan saya
width, width, cellspacing and cellpadding.



You can also add attributes to the tr and td tags. For example, you can specify the width of each table cell.



Widths can be specified in either pixels or percentages. Specifying the width in pixels allows you to specify an exact width. Percentages allows the table to "grow" or "shrink" depending on what else is on the page and how wide the browser is.











Add some attributes to your table...

<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<td width="20%">Table cell 1</td><td>Table cell 2</td>
</tr>
</table>


It should result in something like this in your browser...




Table cell 1Table cell 2



Table Headers


Many tables, particularly those with tabular data, have a header row or column. In HTML, you can use the th tag.


Most browsers display table headers in bold and center-aligned.










Add a table header row...

<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th>Table header</th>
<th>Table header</th>
</tr>

<tr>
<td width="20%">Table cell 1</td><td>Table cell 2</td>
</tr>
</table>


It should result in something like this in your browser...







Table headerTable header
Table cell 1Table cell 2



Colspan


You can use the colspan attribute to make a cell span multiple columns.










Add colspan...

<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th colspan="2">Table header</th>
</tr>
<tr>
<td width="20%">Table cell 1</td><td>Table cell 2</td>
</tr>
</table>


It should result in something like this in your browser...







Table header
Table cell 1Table cell 2



Rowspan


Similar to what colspan is for columns, rowspan enables you to make a cell span multiple rows.










Add rowspan...

<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th rowspan="2">Table header</th><td>Table cell 1
</tr>
<tr>
<td>Table cell 2</td>
</tr>
</table>


It should result in something like this in your browser...






Table headerTable cell 1
Table cell 2



Labels:


Read More . . .
posted by tik_sma @ 8:39 AM   0 comments
 
Mencari Dari

hit counter

Powered By. Blogger.com
Copyright © 2007 Ricky Fjr All rights reserved.