ad
Monday, July 31, 2023
how to add image in text background use html and css
Saturday, July 29, 2023
HTML ID Attribute
HTML id Attribute
Information
PROGRAM
<!doctype html>
<html>
<head>
<title>id attribute</title>
<style>
#myid{
background-color:yellow;
color:red;
text-align:center;
padding:20px;
}
</style>
</head>
<body>
<h2>ID ATTRIBUTE USE </h2>
<p>Google is one of a third-party vendor on our site. It also uses cookies,
known as DART cookies, to serve ads to our site visitors based upon their
visit to www.website.com and other sites on the internet. However,
visitors may choose to decline the use of DART cookies by visiting
URL – <a href="webdesigningtheory.blogspot.com"</a></p>
<h2 id="myid">ID ATTRIBUTE</h2>
<h2 id="myid">ID ATTRIBUTE USE</h2>
</body>
</html>
OUTPUT
Related Post
html radio button
html unordered list
how to insert image in html
html id attribute
HTML ID Attribute
Information
1] The id attribute specifies a unique id for HTML element.
2 The id attribute is used to point to a specific style declaration in a style sheet.
3] The syntax for id write a hash character (#)
4] Then, define the CSS properties within curly braces {}
5] <h1> element that points to the id name "myHeader".
6]<h1>element will be styled according to the #myHeader style definition in the head section
Program
<!doctype html>
<html>
<head>
<title>id Attribute</title>
<style>
#myid {
background-color:lightblue;
color:red;
padding:40px;
text-align:center;
}
</style>
</head>
<body>
<h2>The id Attribute</h2>
<p>web planning takes after a standard method of utilizing log records.
These records log guests when they visit
websites.All facilitating companies do this and a portion of facilitating services' analytics.
The data collected by log records incorporate web convention (IP) addresses,
browser sort, Web Benefit Supplier (ISP), date and time stamp, referring/exit pages,
and conceivably the number of clicks. These are not connected to any data that's by and by identifiable. The reason of the data is for analyzing patterns, regulating the location, following users' development on the site,and gathering statistic data </p>
<h1 id="myid"> ID ATTRIBUTE</H1>
</body>
</html>
The data collected by log records incorporate web convention (IP) addresses,
browser sort, Web Benefit Supplier (ISP), date and time stamp, referring/exit pages,
and conceivably the number of clicks. These are not connected to any data that's by and by identifiable. The reason of the data is for analyzing patterns, regulating the location, following users' development on the site,and gathering statistic data </p>
OUTPUT
Related Post :-
bold tag in html
audio tag in html
html address tag
Friday, July 28, 2023
css class attribute
Html Class Atribute
Information
1] The html lesson attrubute is utilized to indicate a lesson
for an html component
2] Course quality is utilize to point to course title in fashion sheep .
3]Three component with a course attrubute with esteem city
Program
Program
OUTPUT
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




