| Visibility Meta Title in HTML |
Style
Style: By using this style attributes we can decorate the webpage.
Sample Script:
<html>
<marquee style="color:red">
Welcome To HTML Learners
</marquee>
<a href="www.danphp.com" style="text-decoration:underline">Click Here HTML Notes</a>
</html>
<marquee style="color:red">
Welcome To HTML Learners
</marquee>
<a href="www.danphp.com" style="text-decoration:underline">Click Here HTML Notes</a>
</html>
Visibility: This is property of style object used to display or hide the controlee on the webpage. The values are “visible” and ”hidden”.
Sample Script:
<html>
<img src="file:///C|/xampp/htdocs/1.jpg" width="100" style="left:'200';top:'50';position:'absolute'">
</html>
<img src="file:///C|/xampp/htdocs/1.jpg" width="100" style="left:'200';top:'50';position:'absolute'">
</html>
Meta: By using this tag we can provide keywords to the search engines, description and refresh options.
Sample Script:
<html>
<meta name="keywords" content="danphp, html tutorial, html notes ">
<meta name="description" content="danph web site is specially dedicated to the HTML learners.>"
</html>
<meta name="keywords" content="danphp, html tutorial, html notes ">
<meta name="description" content="danph web site is specially dedicated to the HTML learners.>"
</html>
Title: By using this tag we can change the web title.
Sample Script:
<html>
<head>
<title>Dan PHP</title>
</head>
</html>
<head>
<title>Dan PHP</title>
</head>
</html>
No comments:
Post a Comment