-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
43 lines (38 loc) · 1.11 KB
/
about.html
File metadata and controls
43 lines (38 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="cursor"></div>
<header class="fade-in">
<h1 class="logo">About Me</h1>
<nav>
<a href="index.html">Home</a>
<a class="active" href="about.html">About</a>
<a href="upload.html">Upload</a>
<a href="commissions.html">Commissions</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section class="about fade-in">
<img src="images/art1.jpg" alt="Art">
<img src="images/art2.jpg" alt="Art">
<img src="images/art3.jpg" alt="Art">
<img src="images/art4.jpg" alt="Art">
<img src="images/art5.jpg" alt="Art">
<div>
<h2>Hello, I'm Harshil 🎨</h2>
<p>I'm a digital artist showcasing my work through this neon-themed virtual gallery.
Explore my artworks & creativity.</p>
</div>
</section>
<footer class="fade-in">
© 2025 Digital Art Gallery | Harshil
</footer>
<script src="script.js"></script>
</body>
</html>