Good-writing for good website text content
Untuk menghasilkan tulisan yang baik pada website atau blog, Anda jangan segan untuk menyisipkan kutipan dan definisi dari sumber lain yang kredibel untuk mendukung postingan artikel Anda.Membuat Kutipan
<blockquote style="width: 536px; height: 63px">
<div>As for the colors and basic layout – this is the most important CSS file in your theme. The file can be found at <span style="color: blue">your_eshop/themes/your_theme/css/custom.css</span></div>
</blockquote>
Membuat Definisi
- Tag <dl> atau yang mana dl adalah singkatan dari definition list. Tag ini berfungsi sebagai pembuka untuk membuat definisi.
- Tag <dt> atau yang mana dt adalah singkatan dari definition term. Tag ini berfungsi untuk menuliskan istilah yang didefinisikan.
- Tag <dd> atau yang mana dd adalah singkatan dari definition description. Tag ini berfungsi untuk menuliskan rangkaian kata dan kalimat untuk menjelaskan istilah atau term yang didefinisikan.
- Format Script seperti di bawah ini :
<dt>Term 1</dt>
<dd>Penjelasan term1</dd>
<dt>Term 2</dt>
<dd>Penjelasan term2</dd>
</dl>
Berikut ini contoh script menulis definisi :
</h4>
<dl>
<dt>Website :</dt>
<dd>A website, also written as Web site,[1] web site, or simply site,[2] is a set of related web pages containing content such as text,images, video, audio, etc. A website is hosted on at least one web server, accessible via a network such as the Internet or a private local area network through an Internet address known as a Uniform Resource Locator. All publicly accessible websites collectively constitute the World Wide Web.</dd>
<dt>Blog :</dt>
<dd>A blog (web log)[1] is a discussion or informational site published on the World Wide Web and consisting of discrete entries ("posts") typically displayed in reverse chronological order (the most recent post appears first).</dd>
</dl>
Script diatas akan ditampilkan di website SEPERTI DIBAWAH INI :
Contoh membuat Definisi (dikutip dari situs Wikipedia)
- Website :
- A website, also written as Web site,[1] web site, or simply site,[2] is a set of related web pages containing content such as text,images, video, audio, etc. A website is hosted on at least one web server, accessible via a network such as the Internet or a private local area network through an Internet address known as a Uniform Resource Locator. All publicly accessible websites collectively constitute the World Wide Web.
- Blog :
- A blog (web log)[1] is a discussion or informational site published on the World Wide Web and consisting of discrete entries ("posts") typically displayed in reverse chronological order (the most recent post appears first).