DATE | ACTIVITY |
---|---|
19-22/2 | Manik Kayu (leadership programme) |
29/2 | Revisit Kembara Buddi |
6-8/2 | Air Terjun Pelangi |
14/3 | Rumah Pengasih |
18/4 | First Aid programme |
1-4/5 | Hiking mountain Angsi and Datok |
16/5 | Feast |
This blog is telling a story about scout from Uia Kuantan which known is as KLKM IIUM KUANTAN.
Activity 1: Camp Vigil.
Venue : Kampung Kempadang
Moment : (not upload yet :p )
Activity 2 : Hinex
Venue : USM
Moment :
To know more about scout, you can visit this website: http://02kintakelana.yolasite.com/resources/Skim%20Latihan%20Kelana%20NEW.pdf
1) introduction
<html>
<body>
<h1>My First Heading</h1>
<p>My First paragraph</p>
</body>
</html>
2) list
<html>
<body>
<h4>Disc bullets list:</h4>
<ul type+="disc">
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
</ul>
<h4>Letters list:</h4>
<ol type="A">
<li>Apples</li>
<li>Bananas</li>
<li>Lemons</li>
<li>Oranges</li>
</ol>
<h4>A nested List:</h4>
<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea,/li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>
</body>
</html>
3)image
<html>
<body>
<p>
An image:
<img src="th.jpg" alt="th.jpg" width="32" height="32" />
</p>
<p>
a moving image:
<img src="animated-smiley1.gif" alt="animated-smiley1.gif" width="48" height="48" />
</p>
<p>
Note that the synthax of inserting a moving image is no different from a non-moving image.
</p>
</body>
</html>
4)link
<html>
<body>
<p>
<a href="#C4">See also Chapter 4.</a>
</p>
<h2>Chapter1</h2>
<p>This chapter explains.......</p>
<h2>Chapter 2</h2>
<p>This chapter explains..........</p>
<h2>Chapter 3</h2>
<p>This chapter explains............</p>
<h2><a name="C4">Chapter 4</a></h2>
<p>This chapter explains..........</p>
<h2>Chapter 5</h2>
<p>This chapter explains..................</p>
<a href="https://www.facebook.com/shafi.zarah">name.SHAFEEQAH/body>
</html>
5)table
<html>
<body>
<h4>Without cellpadding:</h4>
<table border="1">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
<h4?With cellpadding:</h4>
<table border="1"
cellpadding="10">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</td>
</table>
</body>
</html>