Hi everybody
I want to make a border of frame on my website. So how to make it?

Recommended Answers

All 5 Replies

 <!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
 <frameset cols="50%,50%">
  <frame src="frame_a.htm" frameborder="0">
  <frame src="frame_b.htm" frameborder="2">
</frameset> 
</body>
</html> 

see this code and try..

try this!

<!DOCTYPE html>
<html>

<frameset cols="100%">
  <frame src="frame_a.htm" style="border:medium double rgb(0,0,255)">

</frameset>

</html>

use css to apply frame border and style.

Why not use the w3schools site?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.