hi, now let us continue to previous session ,
see real life example:
make tea
now let us see more if you would like user transfer from one page to another then either by embedding or by anchor link.
in above example i change <h2> & <p> by <iframe> or by <a>
if you are giving some link such download video, or go to page then use anchor tag.
if you are using frame to show another page on current page then use <iframe > or <embed> tag.
see another example make user registration form
here use form tag with post method is attribute.
here uses two input tags for entering value by user.
& submit button to perform action or enter button action .
in this html is very easy hypertext base language.
we see more detail on next session . don't forget to give comment, which will help to provide better solution. in next we see more example with to css & javascript. & more detail to tags.
see real life example:
make tea
<doctype html>
<html>
<title>make tea</title>
<body>
<h2>how to make tea</h2>
<p> add sugar, tea powder, milk, wait 5 minute to hot</p>
</body>
</html>
in above example use simple tag h2 with para.<html>
<title>make tea</title>
<body>
<h2>how to make tea</h2>
<p> add sugar, tea powder, milk, wait 5 minute to hot</p>
</body>
</html>
now let us see more if you would like user transfer from one page to another then either by embedding or by anchor link.
in above example i change <h2> & <p> by <iframe> or by <a>
if you are giving some link such download video, or go to page then use anchor tag.
if you are using frame to show another page on current page then use <iframe > or <embed> tag.
see another example make user registration form
<form method="post">
<label>Enter Username</label>
<input type="text" name="username">
<label>Enter Password</label>
<input type="text" name="useraddrss">
<input type="submit" value="Save my Registration">
</form>
above form basically use to register unknown user on site . so that valid user can get more & more from site.<label>Enter Username</label>
<input type="text" name="username">
<label>Enter Password</label>
<input type="text" name="useraddrss">
<input type="submit" value="Save my Registration">
</form>
here use form tag with post method is attribute.
here uses two input tags for entering value by user.
& submit button to perform action or enter button action .
in this html is very easy hypertext base language.
we see more detail on next session . don't forget to give comment, which will help to provide better solution. in next we see more example with to css & javascript. & more detail to tags.