Wednesday, 16 October 2013

Learn Some Basic HTML Code..

<!-- Write the markup language code to display your name in the largest-size heading element. -->
<html>
<body>

<h1> MOHD MUSTAQIM & MUSTAQQEEM </h1>

</body>
</html>


Figure 1: Name
sources: name.html

<!-- Write the markup language code for unordered list to display the days of the week. -->
<html>
<body>

<ul>
<li> SUNDAY </li>
<li> MONDAY </li>
<li> TUESDAY </li>
<li> WEDNESDAY</li>
<li> THRUSDAY </li>
<li> FRIDAY </li>
<li> SATURDAY </li>
</ul>

</body>
</html>
Figure 2: Day
sources: day.html


<!-- Write the markup language code for an ordered list that uses uppercase letters to order the items. This ordered list will display the following : Spring, Summer, Fall and Winter. -->

<html>
<body>

<ol type="A">
<li>Spring</li>
<li>Summer</li>
<li>Fall</li>
<li>Winter</li>
</ol>

</body>
</html>
Figure 3: Summer
sources: summer.html


<!-- Think of a favorites quote by someone you admire. Write the XHTML code to display the person's name in a heading and the quote in a block quote. -->

<html>
<body>

<h1> Prophet Muhammad Quotes: Learn the Way Of Wisdom </h1>

<div> <i>“It is better to sit alone than in company with the bad, and it is 
better still to sit with the good than alone. It is better to speak to a 
seeker of knowledge than to remain silent, but silence is better han idle words.” </i></div>

</body>
</html>
Figure 4: Quote
sources: quote.html

No comments:

Post a Comment