-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathartworks.html
More file actions
67 lines (63 loc) · 3.05 KB
/
artworks.html
File metadata and controls
67 lines (63 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Name3138 - Artworks</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body class="bg-gradient-animated">
<div id="particles-js"></div>
<audio id="background-music" loop>
<source src="backgroundmusic.mp3" type="audio/mpeg">
Your browser doesn't support audio lmao
</audio>
<div class="fixed bottom-4 right-4 volume-control-bar z-50">
<div class="flex items-center space-x-4">
<button id="pause-button" class="text-white hover:text-pink-300 transition duration-300">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 9v6m4-6v6m7-3a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</button>
<button id="continue-button" class="text-white hover:text-pink-300 transition duration-300 hidden">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.752 11.168l-3.197-2.132A1 1 0 0010 9.87v4.263a1 1 0 001.555.832l3.197-2.132a1 1 0 000-1.664z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</button>
<input type="range" id="volume-control" min="0" max="1" step="0.1" value="0.5" class="w-24">
</div>
</div>
<nav class="fixed top-0 left-0 w-full navbar z-50">
<div class="max-w-6xl mx-auto px-4">
<div class="flex justify-between items-center py-4">
<a href="index.html" class="text-xl font-bold text-white">Noname</a>
<div class="flex space-x-6">
<a href="portfolio.html" class="text-white hover:text-pink-300">Portfolio</a>
<a href="artworks.html" class="text-white hover:text-pink-300">Artworks</a>
<a href="index.html" class="text-white hover:text-pink-300">Social</a>
</div>
</div>
</div>
</nav>
<section class="h-screen flex items-center justify-center text-white section-content" data-aos="fade-down">
<div class="text-center">
<h1 class="text-5xl font-bold mb-4">Artworks</h1>
<p class="text-lg">Actually nothing lol</p>
</div>
</section>
<footer class="bg-dark bg-opacity-90 py-8 section-content">
<div class="container mx-auto text-center">
<p class="text-gray-300">Thanks for passing by!</p>
</div>
</footer>
<!-- AOS JS -->
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<!-- External JS -->
<script src="script.js"></script>
</body>
</html>