-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (45 loc) · 2.01 KB
/
index.html
File metadata and controls
45 lines (45 loc) · 2.01 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">
<title>STUDIO by DOSAYGO</title>
<link href="https://fonts.googleapis.com/css2?family=Inconsolata&family=Rajdhani:wght@400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="theme2.css">
</head>
<body>
<header>
<svg class="logo" width="400" height="400" viewBox="0 0 100 100">
<defs>
<linearGradient id="yGradient" x1="0%" y1="100%" x2="0%" y2="0%">
<stop offset="0%" style="stop-color:#FF0000"/> <!-- y=80, Red -->
<stop offset="30%" style="stop-color:#FFFF00"/> <!-- y=65, Yellow -->
<stop offset="60%" style="stop-color:#FFFF00"/> <!-- y=50, Yellow -->
<stop offset="80%" style="stop-color:#00FF00"/> <!-- y=40, Green -->
<stop offset="95%" style="stop-color:#00FF00"/> <!-- y=32.5, Green -->
<stop offset="100%" style="stop-color:#0000FF"/> <!-- y=30, Blue -->
</linearGradient>
<linearGradient id="orbGradient" x1="0%" y1="100%" x2="0%" y2="0%">
<stop offset="0%" style="stop-color:#0000FF"/> <!-- y=30, Blue -->
<stop offset="50%" style="stop-color:#4B0082"/> <!-- y=20, Purple -->
<stop offset="100%" style="stop-color:#EE82EE"/> <!-- y=10, Ultraviolet -->
</linearGradient>
</defs>
<path class="logo-y" d="M50 80 L50 40 L20 30 L50 40 L80 30" fill="none" stroke="url(#yGradient)" stroke-width="8"/>
<circle class="logo-o" cx="50" cy="20" r="10" fill="url(#orbGradient)"/>
</svg>
<h1><a href="https://dosaygo.com">STUDIO by DOSAYGO</a></h1>
<p>Creative Journeys in the Web’s Cosmos</p>
<nav>
<a href="/about.html">About</a>
<a href="/posts.html">Posts</a>
</nav>
</header>
<main>
<p>Welcome to STUDIO by DOSAYGO, where we craft hacks, tools, and experiments that spark innovation.</p>
</main>
<footer>
<p>© 2025 DOSAYGO Studio. <a href="/contact.html">Contact</a></p>
</footer>
</body>
</html>