Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Every thing updated with proper arrangements of the files and folders #60

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 51 additions & 19 deletions Project/Fee Structure.html
Original file line number Diff line number Diff line change
@@ -1,25 +1,57 @@
<html>
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fee Structure</title>
<style>
.box{
display: block;
padding: 14px 180px;
}
</style>
<link rel="stylesheet" href="fee-style.css">
<script>
document.addEventListener('contextmenu',event => event.preventDefault());
document.addEventListener('contextmenu', event => event.preventDefault());
function Redirect() {
window.location = 'LoginPage.html';
}
function register() {
window.location = 'Registration Form.html';
}
</script>
</head>

<body>
<div class="box" >
<img src="Fee Structure.png" width="1100" height="500">
<img src="https://clipart-library.com/img/1852753.gif" width="1000">
</div>
</body></html>

//The provided HTML document creates a webpage titled "Fee Structure." It incorporates a simple structure with a header section containing the title, an embedded stylesheet, and a script to disable the right-click context menu. The body of the webpage includes a styled box with an image. The title, set by the `<title>` tag in the `<head>` section, is "Fee Structure."
//The embedded stylesheet, defined within the `<style>` tags, introduces a CSS rule for a class named "box." The rule specifies that elements with the "box" class should be displayed as blocks and have padding of 12 pixels at the top and bottom, as well as 120 pixels on the left and right.
//The script inside the `<script>` tags uses JavaScript to prevent the default context menu from appearing when the user right-clicks on the webpage. This is achieved by listening for the 'contextmenu' event and calling `event.preventDefault()` to suppress the default behavior.
//The body of the webpage contains a `<div>` element with the class "box." This div encloses an `<img>` tag that displays an image named "Fee Structure.png." The image has specified dimensions of 1100 pixels in width and 500 pixels in height.
//In summary, the HTML document defines a straightforward webpage with a title, a styled box containing an image, and a script to disable right-click functionality, possibly used to protect the image or prevent users from accessing the context menu. The styling ensures a visually appealing presentation of the image within the designated box on the webpage.*/

<!-- Navbar HTML -->

<header class="header">

<div class="left">
<img src="img/dumbbell.png" alt="">
<div>
Intesity Gym
</div>
</div>
<div class="mid">
<ul class="navbar">
<li><a href="home.html" >Home</a></li>
<li><a href="./Gallery/Gallery.html">Gallery</a></li>
<li><a href="./Services/our services.html">Services</a></li>
<li><a href="Registration Form.html">Registration Form</a></li>
<li><a href="#" class="active">Fee Structure</a></li>
</ul>
</div>
<div class="right">
<script src="https://apps.elfsight.com/p/platform.js" defer></script>
<button class="btn" onclick="Redirect()">Login here</button>
<a href="mailto:[email protected]">
<button class="btn">Email Us</button>
</a>
</div>
</header>

<!-- Page HTML -->

<div class="box">
<img src="Fee Structure.png" alt="Fee Structure" width="800" height="480">
</div>
</body>

</html>
119 changes: 0 additions & 119 deletions Project/FeeStructureAP

This file was deleted.

48 changes: 0 additions & 48 deletions Project/FeeStructure_Apurva.html

This file was deleted.

25 changes: 0 additions & 25 deletions Project/Fees.html

This file was deleted.

Loading