-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathart.html
More file actions
82 lines (69 loc) · 3.17 KB
/
art.html
File metadata and controls
82 lines (69 loc) · 3.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Art Releases | UltimaWorksStudio</title>
<link
href="https://fonts.googleapis.com/css2?family=MedievalSharp&family=Spectral:ital,wght@0,400;0,700;1,400&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="gump-container">
<div class="parchment-surface">
<header>
<!-- Using your uploaded logo -->
<img src="assets/UltimaWorks.png"
alt="UltimaWorks Logo" class="main-logo"
onerror="this.style.display='none';
this.nextElementSibling.style.display='block';">
<h1 class="uo-title">
UltimaWorks
</h1>
<p class="uo-subtitle">Art & Assets for the Modern Client</p>
<nav class="uo-nav">
<a href="index.html" class="gump-btn">Home</a>
<a href="art.html" class="gump-btn active">Art Releases</a>
<a href="scripts.html" class="gump-btn">Scripts & Python</a>
<a href="https://github.com/UltimaWorks" class="gump-btn">GitHub</a>
</nav>
</header>
<main>
<section class="content-block">
<h2>Custom Art Collections</h2>
<div class="release-list">
<!-- Item 1 -->
<div class="release-item">
<span class="tag">Textures</span>
<h3>Classic Map Overlays</h3>
<p>High-definition stone and masonry textures designed to replace aging floor tiles.
Optimized for the 2D client with proper transitions.</p>
</div>
<!-- Item 2 -->
<div class="release-item">
<span class="tag">Interface</span>
<h3>Gump Overhauls</h3>
<p>Gothic-styled container gumps and transparent paperdoll overlays for a cleaner, more
immersive UI.</p>
</div>
<!-- Item 3 -->
<div class="release-item">
<span class="tag">Statics</span>
<h3>Custom Forge & Anvils</h3>
<p>New isometric sprites for crafting stations, including animated heat effects for master
smithy expansions.</p>
</div>
</div>
</section>
</main>
<footer>
<div class="divider-icon">✦ ✧ ✦</div>
<p>© 2025 UltimaWorks Studio - Created by JBob. All Britannia rights reserved.</p>
</footer>
</div>
</div>
<script src="assets/releases.inline.js"></script>
<script src="assets/modal.js"></script>
</body>
</html>