Friday, July 28, 2023

html class attribute

 Html Class Atribute

Information

      1] The html class attrubute is used to specify a class
             for an html element 
      2] Class attribute is use to point to class name in style sheep .

      3]Three <div> element with a class attrubute with value city

 Program


<!doctype html>
<html>
<head>
<title> class attribute use</title>
<style>
.satara{
background-color:purple;
color:white;
border:2px;
margin:20px;
padding:19px;
}

.mumbai{
background-color:pink;
color:white;
border:2px;
margin:20px;
padding:19px;
}
.pune{
background-color:red;
color:white;
border:2px;
margin:20px;
padding:19px;
}
</style>
</head>
<body>
<div class="satara">
<h2>Satara special food kandi pedhe</h2>
</div>

<div class="mumbai">
<h2>Mumbaispecial food vada pav</h2>
</div>

<div class="pune">
<h2>pune special Mava jalebi</h2>
</div>

</body>
</html>

OUTPUT

class attribute use


2] Program


<!doctype html>

<html>

<head>

<title> class attribute use</title>

<style>

.satara{

background-color:purple;

color:white;

border:2px;

margin:20px;

padding:19px;

}

.mumbai {

background-color:pink;

color:white;

border:2px;

margin:20px;

padding:19px;

}

.pune{

background-color:red;

color:white;

border:2px;

margin:20px;

padding:19px;

}

</style>

</head>

<body>

<div class="satara">

<h2>Satara special food kandi pedhe</h2>

</div>

<div class="mumbai">

<h2>Mumbaispecial food vada pav</h2>

</div>

<div class="pune">

<h2>pune special Mava jalebi</h2>

</div>

</body>

</html>


OUTPUT

class attribute use



VISIT link 
And
your extra information


https://webdesigningtheory.blogspot.com/2023/05/html-table-program.html 

https://webdesigningtheory.blogspot.com/2022/12/horizontal-navigation-bar-web-designing.html

Thursday, July 27, 2023

html block and inline element

 HTML block and inline element


Information

 1] Block leval element always starts a new line and browsers automatically
 2] Add some  space a margin befor and after element
 3] The <h2>  element defines a heading in html document.
 4] The <div> element defines a division or a section in an html document
 5] <h1>Privacy Policy for web designing </h1>


Program

<!doctype html>
<html>

<head>
<title></title>
</head>

<body> <H1>HTML BLOCK AND LNLINE ELEMENT</H1>

<p style="border:1px solid black">Hii friend</p>
<div style="border:1px solid pink">Hii friend</div>
<p>Third-party ad servers or ad networks uses technologies like cookies,
 JavaScript, or Web Beacons that are used in their respective advertisements
 and links that appear on web designing, which are sent directly to users' 
browser. They automatically receive your IP address when this occurs. 
These technologies are used to measure the effectiveness of their advertising campaigns and/or to personalize the advertising content that you see on websites that you visit.</p>
</body>

</html>


OUTPUT

html  block and lnline element


VISIT link 
And
your extra information


Responsive image Grid html,css program

 Responsive image Grid html,Css program


responsive image



Program


<!doctype html>

<html>
<head>

<title></title>
</head>
<style>
*{
box-sizing:border-box;
}
header{
margin:0;
font-family:arial;
}
</style>
<body>
<div class="header">
<h1>Responsive image grid</h1>
<h2>Responsive effect</h2>
<div class="row">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRepCoPVhIXI3rEUss3pxeNaHcqwHHgVHZTeQ&usqp=CAU"
 style="width:100%">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTigzv3Ag525N1qTfA9lY-nsPVpjhTiS5S_gmJO92heCE2stfydnceBGsziZeHQxz2TCVM&usqp=CAU"
style="width:100%">
 <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSFMHzPwwHx8j_oxFE-8RHC3eq7Jn2qgV1ap9TqkEt3fIcbNmbq2xKYiRS1sx-_Z0FQsF8&usqp=CAU"
style="width:100%">
   <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSIgn8Q7sPVVVd33OdTN2P9t_spzVwPFP71Aw&usqp=CAU"
  style="width:100%">
</div>
</body>
</html>

Output