Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts
Design a page having background colour yellow, giving text colour red and using all the attributes of font tab.

Design a page having background colour yellow, giving text colour red and using all the attributes of font tab.

Design a page having background colour yellow, giving text colour red and using all the attributes of font tab.

Code

<html>
<body bgcolor="yellow">
<font color="red" size="10" face="Arial Black">This is a sample text</font>
</body>
</html>


Output




Hope you all will enjoy this Post. Any kind of positive suggestions regarding this post are heartly accepted. If any one has problem with this post content, kindly let me know through email , i will update or remove this post as soon as possible

Thanks

Regards

Ketan Joshi
SA Palanpur HO
Mo no:+91 8866984506
eMail : k9724675876@gmail.com
Create a web page, showing an unordered list of names of five of your friends.

Create a web page, showing an unordered list of names of five of your friends.

Create a web page, showing an unordered list of names of five of your friends.

Code

<html>
<body>
<ul>
<li>Friend name here</li>
<li>Friend name here</li>
<li>Friend name here</li>
<li>Friend name here</li>
<li>Friend name here</li>
</ul>
</body>
</html>

Output




Hope you all will enjoy this Post. Any kind of positive suggestions regarding this post are heartly accepted. If any one has problem with this post content, kindly let me know through email , i will update or remove this post as soon as possible

Thanks

Regards

Ketan Joshi
SA Palanpur HO
Mo no:+91 8866984506
eMail : k9724675876@gmail.com
Create an HTML document giving details of your name, age, telephone number, address, TLC code & enrolment number aligned in proper order.

Create an HTML document giving details of your name, age, telephone number, address, TLC code & enrolment number aligned in proper order.

Create an HTML document giving details of your name, age, telephone number, address, TLC code & enrolment number aligned in proper order.

<html>
<body>
<ol>
<li>Name : Ketan D Joshi/li&gt;
<li>Address : At &amp; Po Gadh</li>
<li>Mo NO- +91 0000000000</li>
<li>Desi.: Student at IGNOU Nootan Bharati Madana</li>
<li>En. No: 145566778</li>
</li>
</ol>
</body>
</html>

Out put




Hope you all will enjoy this Post. Any kind of positive suggestions regarding this post are heartly accepted. If any one has problem with this post content, kindly let me know through email , i will update or remove this post as soon as possible

Thanks

Regards

Ketan Joshi
SA Palanpur HO
Mo no:+91 8866984506
eMail : k9724675876@gmail.com
Write a code to create a scrolling text in a text box

Write a code to create a scrolling text in a text box

Write a code to create a scrolling text in a text box

Code

<html>
<script>
var sp;
var k;
k=0;
sp=" ";
function scroll()

{
f1.t1.value=sp+"welcome";
sp=sp+" ";
k=k+1;

if(k>=30)
{
sp=" "
k=0;
}

window.setTimeout("scroll()",100);
}
</script>
<body onload="scroll()">
<form id="f1" method="post">
<input type="text" size="50" id="t1">
</form>
</body>
</html>

output



Hope you all will enjoy this Post. Any kind of positive suggestions regarding this post are heartly accepted. If any one has problem with this post content, kindly let me know through email , i will update or remove this post as soon as possible

Thanks

Regards

Ketan Joshi

SA Palanpur HO

Mo no:+91 8866984506

eMail : k9724675876@gmail.com
; //]]>