Jump to content

how can i make such a frame??


skull_kid5

Recommended Posts

I think this

<html><frameset rows="25%,*"><frameset cols="25%,*"><frame src="frame_b.htm"><frame src="frame_c.htm"></frameset><frameset cols="25%,*"><frame src="frame_b.htm"><frame src="frame_c.htm"></frameset></frameset></html>

Link to comment
Share on other sites

also you might consider this CSS layout

div.menu{position:relative;left:0%;top:10%/*choose your own height and width*/}div.title{position: relative;top:0%;left:0%;width:100%height:10%}div.content{position: relative;top: 10%float:left;/*determine your own height and width to suit your needs*/}

and the html

<html><head><link rel="stylesheet" type="text/css" href="(where you save the CSS)" /></head><body><div class="title"><!--content--></div><div class="menu"><!--content--></div><div class="content"><!--content--></div></body>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...