-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload.html
More file actions
39 lines (32 loc) · 950 Bytes
/
upload.html
File metadata and controls
39 lines (32 loc) · 950 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upload Art</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="cursor"></div>
<header class="fade-in">
<h1 class="logo">Upload Art</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a class="active" href="upload.html">Upload</a>
<a href="commissions.html">Commissions</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section class="section-box fade-in">
<h2>Upload Your Artwork</h2>
<input type="file" id="fileInput">
<button class="btn" onclick="uploadImage()">Upload</button>
<div id="uploadResult" style="margin-top: 20px;"></div>
</section>
<footer class="fade-in">
© 2025 Digital Art Gallery | Harshil
</footer>
<script src="script.js"></script>
</body>
</html>