
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Using Frames in HTML5
The frameset attribute deprecated in HTML, but you can still use it. The top-level parent doc now uses
Example
XHTML and the frame uses HTML5.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> <html> <head> </head> <frameset framespacing = "0" rows = "250,*" frameborder = "0" noresize> <frame name = "top" src = "https://qries.com" target = "top"> <frame name = "main" src = "new.html" target = "main"> </frameset> </html>
Advertisements