I want to set Top and Left position of MY Page using Meta Tags
Kindly suggest some solution
I want to set Top and Left position of MY Page using Meta Tags
Kindly suggest some solution
I don't think you are looking for meta tags, as in <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
. You are probably looking for CSS and possibly a <div>
tag:
<style type="text/css">
div.topLeft {
top:0;
left:0;
}
</style>
<div class="topLeft">In the top left</div>
The CSS should probably end up in CSS file linked throught a <link ... />
tag and you'll probably have other HTML including <html>
, <head>
and <body>
tags.