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>

Post a Comment