https://github.com/soumyaexe/frameset
Frameset Website
https://github.com/soumyaexe/frameset
Last synced: 2 months ago
JSON representation
Frameset Website
- Host: GitHub
- URL: https://github.com/soumyaexe/frameset
- Owner: SoumyaEXE
- License: bsl-1.0
- Created: 2024-07-08T02:19:48.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-08T02:42:02.000Z (11 months ago)
- Last Synced: 2025-02-10T21:22:56.384Z (4 months ago)
- Language: HTML
- Size: 2.37 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Got it. Here's the complete content for a README file in Markdown format, which you can copy and paste:
# HTML Frameset and Target Attribute
## Overview
This README provides an explanation of the `` element in HTML and the `target` attribute, particularly in the context of creating a menu that redirects to a middle frame. Additionally, it includes a link to my GitHub profile.
## HTML Frameset
The `` element in HTML is used to divide the browser window into multiple sections, each capable of displaying a separate document. Framesets were commonly used to create web page layouts before the introduction of modern CSS layouts.
### Example
```html
Frameset Example
```
In this example:
- The window is divided into three columns: a left column (`menu`), a middle column (`content`), and a right column (`sidebar`).
- The `cols` attribute specifies the width of each column.## Target Attribute
The `target` attribute specifies where to open the linked document. In the context of frames, this is used to control which frame the content will be loaded into when a link is clicked.
### Example
Assume you have a `menu.html` file with links:
```html
Menu
```
In this example:
- The `target="content"` attribute in the anchor tags (``) specifies that the linked documents should be opened in the frame named `content`.
- When you click on "Page 1" or "Page 2", the content will be loaded in the middle frame.
## GitHub Profile
You can find my GitHub profile [here](https://github.com/soumyaexe).