-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommissions.html
More file actions
45 lines (37 loc) · 1.19 KB
/
commissions.html
File metadata and controls
45 lines (37 loc) · 1.19 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
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Commissions</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="cursor"></div>
<header class="fade-in">
<h1 class="logo">Commissions</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="upload.html">Upload</a>
<a class="active" href="commissions.html">Commissions</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section class="commission fade-in">
<h2>Request a Commission</h2>
<p>Fill the form below and I will receive your request in email.</p>
<form action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="85e8f71e-32d0-498b-8920-15ba98d8a888">
<input type="text" name="name" required>
<input type="email" name="email" required>
<textarea name="message" required></textarea>
<button type="submit">Submit Form</button>
</form>
</section>
<footer class="fade-in">
© 2025 Digital Art Gallery | Harshil
</footer>
<script src="script.js"></script>
</body>
</html>