Showing posts with label advanced html. Show all posts
Showing posts with label advanced html. Show all posts

HTML Frames by PHP, MySQL, CSS, HTML and SEO Tutorials

By Using frames you can show more then one html documents in a browser window. Each html document is called frame.You can do this work by using the following codes.

First open your notepad. And write the codes given below.

<html>

<frameset cols="30%,40%,30%">
    <frame src="test.html">
    <frame src="test_heading.html">
    <frame src="test_paragraph.html"> 
</frameset>

</html>


Save this as test_frameset_vertical.html
And this file placed in that folder where the three files includes given above.
Now open the file in any browser and see the output.

HTML Layout by PHP, MySQL, CSS, HTML and SEO Tutorials

The first step of “advanced html” is “Html Layout”. Layput means  the out looking of hole page, such as you write the codes like of this image, in your notepad. And save it as test_layout.html. Layout actually  is one kind of html table.

Open the file in any browser and see the output.