ad
Thursday, July 27, 2023
html block and inline element
1] Block leval element always starts a new line and browsers automatically
<!doctype html>
<head>
<p style="border:1px solid black">Hii friend</p>
They naturally get your IP address when this happens.These innovations are utilized to degree the viability of their publicizing campaigns and/or to personalize the publicizing substance merely see on websites simply visit.</p>Responsive image Grid html,css program
Responsive image Grid
<!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
Wednesday, July 26, 2023
How to set background image html table
How to set background image htm table
Program
<!doctype html>
<html>
<head>
<title>background image with css</title>
<style>
body{
background-image:url('https://wallpapers.com/images/featured/nature-2ygv7ssy2k0lxlzu.jpg');
}
table{
color:red;
margin:auto;
padding:10px;
}
</style>
</head>
<body>
<center>
<table border="2" height="100px" width="140">
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</center>
</table>
</body>
</html>
Output
Related Post
php program to print number increasing pyramid
php program to print Alphabet pattern M
php if else statements
background image html program
Background image
Information
background image tag <background> attribute in the HTML document use to specify the background image on HTML page
Program
<!DOCTYPE html>
<html>
<head>
<title>Welcome To GFG</title>
</head>
<body background="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR--ezbIfR7wOHrezjEfSvSS1U9HMm_YsqjuA&usqp=CAU">
<h2>Image add to page</h2>
<p> <img src=""> IMG tag. use</p>
</body>
</html>
OUTPUT
Related Post
html login in form
bdo tag in html
bold tag in html
how to apply Image tag in html
IMAGE TAG
Information
1) HTML <img > tag is insert image into a web document.image path define/declare inside <img > tag.
2) <img > tag is empty tag, that mean's no closing tag.
3) <img > tag have some attributes are use for display image on web page.
4) The src attribute, src stands for source, that is path of image URL.
5) Alt Attribute used to define an "alternate text" for an image
6) This specifies text to be identified in the image name.
7) Width and Height specifies the size of image to display on webpage.
Image tag
1] display your Image
Program :-
<!DOCTYPE html>
<html>
<head>
<title>image tag</title>
</head>
<body>
<h2>Image add to page</h2>
<p> <img src=""> IMG tag. use</p>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTnJ5y4eWr_oeyFSCSpcbMm6Bji0vB1zcutSw&usqp=CAU">
</body>
</html>
OUTPUT
2] Fullscreen image in html
Program
<!DOCTYPE html>
<html>
<head>
<title>image tag</title>
</head>
<body>
<h2>fullscreen img add to the webpage</h2>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcScTVw2vhdhhCW71rliHz-OcweYyJDl-Zup5Q&usqp=CAU"
width="900" height="300" alt="nature">
</body>
</html>
Subscribe to:
Comments (Atom)





