Rabu, 16 Maret 2011

microsoft word~

^MENGATUR TIPE DAN UKURAN TEKS^
Apabila komputer Anda dilengkapi dengan mouse (mungkin semua komputer yang ada saat ini telah dilengkapi dengan mouse), maka Anda dapat memanfaatkannya untuk mengatur ukuran teks pada browser.
Caranya adalah dengan menggerakkan scroll wheel pada mouse bersamaan dengan menekan tombol Ctrl. Maka Anda akan mendapati teks pada browser membesar dan mengecil sesuai dengan pergerakan scroll wheel mouse.
Contohnya, apabila Anda menggerakkan scroll wheel mouse pada arah mundur, maka Anda akan membuat tampilan teks pada browser semakin mengecil. Namun sebaliknya, apabila Anda menggerakkan scroll wheel mouse pada arah maju, maka Anda akan membuat tampilan teks pada browser semakin membesar.
Pada beberapa browser, mungkin Anda akan mendapati bukan hanya teks yang membesar atau mengecil. Namun keseluruhan konten yang dimuat browser akan ikut berubah, termasuk semua gambar di dalamnya.
Fitur pengaturan ukuran teks pada browser merupakan fitur yang cukup simpel atau sederhana, namun dapat memberikan manfaat yang begitu besar, terutama bagi seseorang yang merasakan ukuran teks pada suatu website terlihat memiliki ukuran yang belum sesuai.
^cara mengubah warna teks^

Cara Mengubah Warna Teks Menggunakan HTML dan CSS

Cascading Style Sheets (CSS) is the preferred method of changing text color, so first we will show the (archival) method of changing text color using inline HTML color codes, then we will move on to how to achieve the same effect using CSS. Cascading Style Sheets (CSS) adalah metode paling disarankan untuk mengubah warna teks, jadi pertama kita akan menampilkan metode (arsip) dari mengubah warna teks menggunakan kode HTML inline warna, maka kita akan berpindah ke cara untuk mencapai efek yang sama menggunakan CSS.

Text Color Codes Kode Warna Teks

In order to change text colors, you will need two things: Untuk mengubah warna teks, Anda akan membutuhkan dua hal:
1. 1. A command to change the text. Satu komando untuk mengubah teks.
2. 2. A color (hex) code. Warna (hex) kode.
The color codes, as I mentioned above, are technically called hex codes . Kode warna, seperti yang saya sebutkan di atas, secara teknis disebut kode hex. The codes are not too user friendly, so you'll need a chart to tell you what code makes what color. Kode tersebut tidak terlalu user friendly, sehingga Anda akan perlu tabel untuk memberi tahu Anda apa kode membuat apa warna. Well, I happen to have one right here: Click to go. Nah, saya kebetulan memiliki satu di sini: Klik untuk pergi.
So You Want A Color Code, Huh? Jadi Anda Ingin Kode Warna, Hah?
Drop by, grab a six-pack of color code, and come on back. Drop oleh, ambil enam-pak kode warna, dan datang kembali.

Section 1: Changing Full-Page Text Colors Bagian 1: Mengubah Warna Teks Penuh-Halaman

You have the ability to change full-page text colors over four levels: Anda memiliki kemampuan untuk mengubah halaman teks warna-penuh atas empat tingkatan:
<TEXT="######"> -- This denotes the full-page text color. <TEXT="######"> - Ini menunjukkan halaman warna teks-penuh.

<LINK="######"> -- This denotes the color of the links on your page. <LINK="######"> - Ini menunjukkan warna link pada halaman Anda.

<ALINK="######"> -- This denotes the color the link will flash when clicked upon. <ALINK="######"> - Ini menunjukkan warna link akan berkedip pada saat diklik.

<VLINK="######"> -- This denotes the colors of the links after they have been visited. <VLINK="######"> - Ini menunjukkan warna link setelah mereka telah dikunjungi.
These commands come right after the <TITLE> commands. Perintah-perintah ini datang tepat setelah perintah <TITLE>. Again, in that position they affect everything on the page. Also... place them all together inside the same command along with any background commands. Sekali lagi, dalam posisi mereka mempengaruhi segala sesuatu di halaman. Juga ... tempat mereka semua bersama-sama di dalam perintah yang sama bersama dengan latar belakang perintah. Something like this: Sesuatu seperti ini:
< BODY BGCOLOR="######" TEXT="######" LINK="######" VLINK="######"> <BODY bgcolor ="######" TEKS ="######" LINK ="######" VLINK ="######">

Please note: When you write these codes, you can write them with a # sign in front of the hex code or not. Catatan: Bila Anda menulis kode ini, Anda dapat menulis mereka dengan tanda # di depan kode hex atau tidak. It used to be that the symbol was required, but not any more. Dulu bahwa simbol itu diperlukan, tapi tidak lagi. I still use it just because I started that way. Aku masih menggunakannya hanya karena aku mulai seperti itu. You may want to just go with the six-digit code. Anda mungkin hanya ingin pergi dengan kode enam digit. Also make sure to place a space between each command and be sure to enclose it in quotation marks, like so: Juga pastikan untuk menempatkan spasi di antara setiap perintah dan pastikan untuk menyertakan dalam tanda kutip, seperti:
<VLINK="#FFFFFF"> <VLINK="#FFFFFF">

Section 2: Changing Specific Word Color Bagian 2: Mengubah Warna Word Tertentu

But I only want to change one word's color Tapi aku hanya ingin mengubah kata's warna satu
! !
You'll use a color (hex) code to do the trick. Anda akan menggunakan warna (hex) kode untuk melakukan trik. Follow this formula: Ikuti rumus ini:
<FONT COLOR="######"> text text text text text </FONT> <FONT COLOR="######"> teks teks teks teks teks </ FONT>
It's a pain in the you-know-where, but it gets the job done. Ini sakit di kau-tahu-mana, namun mendapatkan pekerjaan. It works with all H commands and text size commands. Ia bekerja dengan semua perintah perintah H dan ukuran teks. Basically, if it's text, it'll work. Pada dasarnya, jika teks, itu akan bekerja.

Using Cascading Style Sheets (CSS) to Change Text Colors Menggunakan Cascading Style Sheets (CSS) Mengubah Warna Teks

There isn't enough space to fully describe what CSS is capable of in this article, but we have several articles here that can get you up to speed in no time! Tidak cukup ruang untuk sepenuhnya menggambarkan apa CSS mampu dalam artikel ini, tapi kami memiliki beberapa artikel di sini yang dapat membuat Anda sampai dengan kecepatan dalam waktu singkat! For a great tutorial on using CSS to change color properties, check out this article by Vincent Wright. Untuk tutorial yang bagus tentang cara menggunakan CSS untuk mengubah properti warna, lihat artikel oleh Vincent Wright.
A quick intro to CSS is in order, so let's describe it a bit. Sebuah intro cepat untuk CSS adalah dalam rangka, jadi mari kita menggambarkan itu sedikit. CSS is used to define different elements on your web page. CSS digunakan untuk mendefinisikan elemen yang berbeda pada halaman web Anda. These elements include text colors, link colors, page background, tables, forms--just about every aspect of the style of the web page. Elemen-elemen ini mencakup warna teks, warna link, latar belakang halaman, tabel, form - hampir setiap aspek dari gaya halaman web. You can use CSS inline, much like the HTML above, or you can, more preferably, include theh style sheet within the HEAD tags on your page, as in this example: Anda dapat menggunakan CSS inline, sangat mirip dengan HTML di atas, atau Anda bisa, lebih disukai, termasuk style sheet theh dalam tag HEAD pada halaman Anda, seperti dalam contoh ini:
<STYLE type=text/css> <style Type=text/css> 
 A:link { A: link { 
  COLOR: red /*The color of the link*/ WARNA: merah / * Warna * link / 
 } } 
 A:visited { A: visited { 
  COLOR: #800080 /*The color of the visited link*/ COLOR: # 800080 / * Warna * link dikunjungi / 
 } } 
 A:hover { A: hover { 
  COLOR: green /*The color of the mouseover or 'hover' link*/ WARNA: 'hover' hijau / * Warna Gunaka mouse atau link * / 
 } } 
 BODY { COLOR: #800080 /*The color of all the other text within the body of the page*/ BODY {COLOR: # 800080 / * Warna semua teks lain dalam tubuh * Halaman / 
 { { 
 </STYLE> </ STYLE> 
Alternately, you can include the CSS that is between the STYLE tags above, and save it in a file that you could call "basic.css" which would be placed in the root directory of your website. Sebagai alternatif, Anda dapat menyertakan CSS yang berada di antara tag STYLE atas, dan menyimpannya dalam file yang Anda bisa sebut "basic.css" yang akan ditempatkan di direktori root website anda. You would then refer to that style sheet by using a link that goes between the HEAD tags in your web page, like this: Anda kemudian akan mengacu ke style sheet dengan menggunakan link yang berlangsung di antara tag HEAD di halaman web Anda, seperti ini:
<link type="text/css" rel="stylesheet" href="basic.css"> <link type="text/css" rel="stylesheet" href="basic.css"> 
As you can see in the example above, you can refer to the colors using traditional color names, or hex codes as described above. Seperti yang Anda lihat dalam contoh di atas, Anda dapat mengacu pada warna menggunakan nama warna tradisional, atau kode hex seperti dijelaskan di atas.
The use of CSS is vastly superior to using inline FONT tags and such, as it separates the content of your site from the style of your site, simplifying the process as you create more pages or change the style of elements. Penggunaan CSS jauh lebih unggul untuk menggunakan tag FONT inline dan semacamnya, karena memisahkan isi situs Anda dari gaya situs Anda, menyederhanakan proses saat Anda membuat halaman lebih banyak atau mengubah gaya elemen. If you are using an external style sheet, you can make the change once in the style sheet, and it will be applied to your entire site. Jika Anda menggunakan style sheet eksternal, Anda dapat membuat perubahan sekali dalam style sheet, dan itu akan diterapkan ke seluruh situs Anda. If you choose to include the style sheet itself within the HEAD tags as shown above, then you will have to make those changes on every page on your site. Jika Anda memilih untuk menyertakan style sheet itu sendiri dalam tag HEAD seperti yang ditunjukkan di atas, maka Anda akan harus membuat perubahan-perubahan pada setiap halaman di situs Anda.
CSS is such a useful tool in your web developer arsenal, you should definitely take the time to read more about it in our CSS Tutorials section. CSS adalah suatu alat yang berguna di gudang pengembang web Anda, Anda pasti harus meluangkan waktu untuk membaca lebih lanjut tentang hal itu di kami CSS Tutorial bagian
^Cara mengatur efek huruf^
Jika Anda membutuhkan beberapa teks mewah, mungkin untuk judul untuk brosur atau mail-out, cobalah menggunakan Microsoft Word 2000's "WordArt" fitur.

Click the "View" menu, select "Toolbars", and check the "WordArt" toolbar if it is not already checked. Klik "View" menu, pilih "Toolbars", dan memeriksa "WordArt" toolbar jika belum dipilih. Click where you would like the fancy text entered. Klik di mana Anda ingin teks mewah dimasukkan. Now, find the "WordArt" toolbar in Word 2000. Sekarang, menemukan "WordArt" toolbar di Word 2000. Click the "A" button on this toolbar. Klik tombol "A" tombol pada toolbar ini. A "WordArt Gallery" dialog box will follow. Sebuah "WordArt Gallery" kotak dialog akan mengikuti. Select how you would like the text to look and press "OK". Pilih bagaimana Anda ingin teks untuk melihat dan tekan "OK". Now, an "Edit WordArt Text" dialog box follows. Sekarang, sebuah "Edit WordArt Teks" kotak dialog berikut. From here, you can change the text font, size, etc., and enter the text that you want displayed. Dari sini, Anda dapat mengubah font teks, ukuran, dll, dan masukkan teks yang Anda ingin ditampilkan. When you are done, press "OK". Setelah selesai, tekan "OK". Afterwards, your desired text, in the format that you chose, will appear in your document. Setelah itu, teks yang Anda inginkan, dalam format yang Anda pilih, akan muncul dalam dokumen Anda. Click and drag the "WordArt" to move it around, if desired. Klik dan tarik "WordArt" untuk bergerak di sekitar, jika diinginkan.

Tidak ada komentar:

Posting Komentar