-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (59 loc) · 2.47 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ugly Wallpapers - Early 2000s Style!</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
</head>
<body>
<div id="background"></div>
<header>
<h1>
<marquee behavior="alternate" scrollamount="10">
Welcome to Ugly Wallpapers!
</marquee>
</h1>
</header>
<main>
<marquee direction="up" scrollamount="2">
<p>Download our amazing ugly wallpapers for FREE!</p>
</marquee>
<div id="wallpapers">
<div class="wallpaper">
<img src="1.png" alt="Ugly Wallpaper 1">
<a href="1.png" download>Download Wallpaper 1</a>
</div>
<div class="wallpaper">
<img src="2.png" alt="Ugly Wallpaper 2">
<a href="2.png" download>Download Wallpaper 2</a>
</div>
<div class="wallpaper">
<img src="3.png" alt="Ugly Wallpaper 3">
<a href="3.png" download>Download Wallpaper 3</a>
</div>
<div class="wallpaper">
<img src="4.png" alt="Ugly Wallpaper 4">
<a href="4.png" download>Download Wallpaper 4</a>
</div>
</div>
</main>
<div id="flying-images"></div>
<div id="sparkles"></div>
<footer>
<marquee behavior="scroll" direction="right" scrollamount="5">
© 2023 Ugly Wallpapers - Making your desktop ugly since 2014!
</marquee>
<script src="script.js"></script>
<div class="footer-content">
<p>Made with love by Matt & Dima</p>
<ul class="project-list">
<li><a href="https://www.oscarstories.com" title="Oscar Stories" target="_blank"><strong>OscarStories.com</strong> - Personalized bedtime stories for kids.</a></li>
<li><a href="https://www.fragdaspdf.de" title="Ask the PDF.io" target="_blank"><strong>FragDasPDF.de</strong> - Quickly extract essential information from PDFs.</a></li>
<li><a href="https://www.branding5.com" title="Branding5" target="_blank"><strong>Branding5.com</strong> - AI-driven brand positioning and marketing strategy tool.</a></li>
</ul>
</div>
</footer>
</body>
</html>