Google clone using HTML and CSS

Image
Program : <html> <!--head section start--> <head> <title>Google</title> <style> span{border-bottom:2px solid royalblue; color:royalblue; border-padding:60px; padding-bottom:10px; } img{position:absolute; left:79px; top:85px; } input{position:absolute; top:189px; height:40px; width:80%; border-radius:80px; border-width:1px; border-style:solid; border-color:darkgray; } .button{background-image:url(/storage/emulated/0/aap/search.jpg); background-size:100% 100%; height:44px; width:70px; position:absolute; top:186px; left:275px; border-color:white; } .button1{background-image:url(/storage/emulated/0/aap/Weather.jpg); position:absolute; top:242px; height:100px; width:100px; background-size:100% 100%; border-color:transparent; } .button2{background-image:url(/storage/emulated/0/aap/Sports.jpg); position:absolute; top:237px; left:80px; height:100px; width:100px; background-size:100% 100%; border-color:transparent; } .button3{background-image:url(/storag

Tea program

HTML program for Tea preparation.


I have created a program using order list <ol>and unorder list<ul>.<li>tag is used for list and ending tag is </li>.

I have also change body color using bgcolor attribute.I have also use heading tag.I have also use a <img> tag with src attribute.

Program :

<html>
<head>
<title>Tea Recipe</title>
</head>
<body bgcolor="lightyellow">
<h1>Tea Recipe:</h1>
<h2>Ingredients For Tea:</h2>
<!--unorder list-->
<ul>
<li>1 cup (250ml) Milk</li>
<li>2 teaspoon Tea Powder</li>
<li>1/4 (approx.60ml) Water</li>
<li>3 teaspoon Sugar</li>
</ul>
<h2>Steps For Preparing Tea:</h2>
<!--order list-->
<ol>
<li>Boil water in saucepan.</li>
<li>Add sugar and tea powder in it and boil<br>
it for 3-4 minutes on medium flame.</li>
<li>Add milk and boil it over medium flame<br>
for 6-7 minutes or until bubble starts to<br>
 rise.You will see the change in color of<br> 
 the tea from milky shade to brown shade when it is ready.</li>
 <li>Turn off the gas and strain tea in cups.</li>
</ol>
<!--image-->
<img src="/storage/emulated/0/aap/Tea.jpg"height="160"width="350">
<p align="right">BY:~AA
</body>
</html>

Output :

                                                                   BY:~AA

Comments

Popular posts from this blog

Google clone using HTML and CSS

BOOK WEBPAGE

HTML Table