Frames.html

<!DOCTYPE html>
<html>

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

</html>

frame_a.html

<html>
<head>
 <style>
  #mycolor1 {color: blue;}    
  .mycolor2 {color: blue;}
  .textbox{background-color:yellow}
 </style>
 <div  style="background-color:yellow;text-align:center"><h2>Frame 1 </h2></div>
</head>

<body bgcolor="blue">
       <center><input type="text" value="Iam in Frame1" id="Frame1txt" /></center>
   
</body>
</html>

frame_c.html

<html>
<head>
 <style>
  #mycolor1 {color: blue;}    
  .mycolor2 {color: blue;}
  .textbox{background-color:yellow}
 </style>
 <div  style="background-color:red;text-align:center"><h2>Frame 3 </h2></div>
</head>

<body bgcolor="purple">
  <center><input type="text" value="Iam in Frame3" id="Frame3txt" /></center> 
</body>
</html>