added things

This commit is contained in:
2026-03-09 20:18:25 +04:00
parent 79d94e9bc6
commit 72c8ebd919
5 changed files with 202 additions and 15 deletions
+45
View File
@@ -0,0 +1,45 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>403 Forbidden — Miles Allen</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="unnamed (1).png">
</head>
<body>
<header class="site-header">
<div class="wrap">
<h1 class="logo">Miles Allen</h1>
<nav class="nav">
<a href="index.html#gallery">Portfolio</a>
<a href="index.html#about">About</a>
<a href="index.html#contact">Contact</a>
</nav>
</div>
</header>
<main>
<section class="hero reveal">
<div class="wrap hero-inner">
<h2 class="hero-title">403</h2>
<p class="hero-sub">Access denied. You don't have permission to view this content.</p>
</div>
</section>
<section class="about wrap reveal">
<h3 class="section-title">Access Forbidden</h3>
<p>This page or resource is restricted and you don't have permission to access it. If you believe this is an error, please contact the site administrator.</p>
<p><a href="index.html">← Back to Home</a></p>
</section>
</main>
<footer class="site-footer">
<div class="wrap">© Miles Wolf Allen — Built with a little JS magic and sweet CSS</div>
</footer>
<script src="scripts.js" defer></script>
</body>
</html>
+45
View File
@@ -0,0 +1,45 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>404 Not Found — Miles Allen</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="unnamed (1).png">
</head>
<body>
<header class="site-header">
<div class="wrap">
<h1 class="logo">Miles Allen</h1>
<nav class="nav">
<a href="index.html#gallery">Portfolio</a>
<a href="index.html#about">About</a>
<a href="index.html#contact">Contact</a>
</nav>
</div>
</header>
<main>
<section class="hero reveal">
<div class="wrap hero-inner">
<h2 class="hero-title">404</h2>
<p class="hero-sub">This page doesn't exist. The photo you're looking for has been lost in the shadows.</p>
</div>
</section>
<section class="about wrap reveal">
<h3 class="section-title">Page Not Found</h3>
<p>It looks like you've stumbled upon a page that doesn't exist. This could be due to a mistyped URL or a removed page.</p>
<p><a href="index.html">← Back to Home</a></p>
</section>
</main>
<footer class="site-footer">
<div class="wrap">© Miles Wolf Allen — Built with a little JS magic and sweet CSS</div>
</footer>
<script src="scripts.js" defer></script>
</body>
</html>
+45
View File
@@ -0,0 +1,45 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>500 Server Error — Miles Allen</title>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="unnamed (1).png">
</head>
<body>
<header class="site-header">
<div class="wrap">
<h1 class="logo">Miles Allen</h1>
<nav class="nav">
<a href="index.html#gallery">Portfolio</a>
<a href="index.html#about">About</a>
<a href="index.html#contact">Contact</a>
</nav>
</div>
</header>
<main>
<section class="hero reveal">
<div class="wrap hero-inner">
<h2 class="hero-title">500</h2>
<p class="hero-sub">Something went wrong on our end. We're working to fix it.</p>
</div>
</section>
<section class="about wrap reveal">
<h3 class="section-title">Server Error</h3>
<p>An error has occurred on the server. I has been notified and I am working to resolve the issue. Please try again later.</p>
<p><a href="index.html">← Back to Home</a></p>
</section>
</main>
<footer class="site-footer">
<div class="wrap">© Miles Wolf Allen — Built with a little JS magic and sweet CSS</div>
</footer>
<script src="scripts.js" defer></script>
</body>
</html>
+16 -13
View File
@@ -1,18 +1,21 @@
MIT License MIT License
Copyright (c) 2026 miles Copyright (c) 2026 mileswa1q22
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and Permission is hereby granted, free of charge, to any person obtaining a copy
associated documentation files (the "Software"), to deal in the Software without restriction, including of this software and associated documentation files (the "Software"), to deal
without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell in the Software without restriction, including without limitation the rights
copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
following conditions: copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial The above copyright notice and this permission notice shall be included in all
portions of the Software. copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
USE OR OTHER DEALINGS IN THE SOFTWARE. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+51 -2
View File
@@ -1,3 +1,52 @@
# school-photo-project # Photo School Project
**Photo School Project** is a simple web-based photo gallery created as part of a school assignment. It demonstrates basic HTML, CSS, and JavaScript skills by organizing images across multiple pages and adding interactive behavior.
## 📁 Project Structure
```
index.html - Main landing page with navigation
photos1.html - Gallery page 1
photos2.html - Gallery page 2
photos3.html - Gallery page 3
photos4.html - Gallery page 4
scripts.js - JavaScript for interactivity (e.g., navigation or lightbox)
styles.css - Styling for layout and appearance
photos/ - Directory containing the image assets
```
## 🚀 Features
- Responsive layout using CSS
- Separate pages for different sets of photos
- Basic JavaScript to handle events or navigation
- Basic config for your photos
## 🛠️ Technologies Used
- HTML5
- CSS3
- Vanilla JavaScript
## 🧩 How to Use
1. Clone the repository:
```bash
git clone <repository-url>
cd photo-shcool-project
```
2. Open `index.html` in a web browser.
3. Navigate through the photo pages using links on the main page.
## 📌 Notes
- Replace placeholder images in the `photos/` directory with your own.
- Optimize image file sizes (resize dimensions, compress, or convert to WebP/AVIF) to improve load times.
- Use lazy loading (`loading="lazy"`) and modern attributes (`decoding="async"`) on `<img>` elements (already applied in this template).
- Feel free to enhance the project with additional features like a lightbox effect, responsive grid, or image captions.
---
*This progect is made for school or personal use. NOT COMMERCIAL it is free to use for commercial but is not made for it. Do not make comments or issues to add commercial staderds or fetchers this is for school or personal use and thanks for reding the readme*
idk