-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (124 loc) · 6.44 KB
/
index.html
File metadata and controls
124 lines (124 loc) · 6.44 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Floowen's Personal Website!</title>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/ekmas/cs16.css@main/css/cs16.min.css">
<link rel="stylesheet" href="style.css" />
<script src="index.js"></script>
<script src="mobile-redirect.js"></script>
</head>
<body>
<audio id="background-audio">
<source src="assets/audio/music.ogg" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<div class="content">
<header>
<h1>Floowen</h1>
<p>Welcome To My Website!</p>
</header>
<hr class="cs-hr">
<br>
<p>Search On Wikipedia</p>
<form action="http://en.wikipedia.org/wiki/Special:Search" id="searchform" name="searchform">
<input class="cs-input"
accesskey="f"
id="searchInput"
name="search"
type="text"
value="" />
<button class="cs-btn" type="submit">Search</button>
</form>
<br>
<div class="infobox">
<div class="cs-tabs">
<input
class="radiotab"
name="tabs"
tabindex="1"
type="radio"
id="tabone"
checked="checked"
/>
<label class="label" for="tabone">Information</label>
<div class="panel" tabindex="1">
<h2>About Me!</h2>
<p>Hi!, My name is Ari (21 yo) otherwise known on the internet as Floowen!</p>
<p>I'm a Computer Science Student and are currently suffering in it</p>
<br>
<p>Things I really like:</p>
<li>Ace Combat Series</li>
<li>Counter Strike</li>
<li>Rainbow Six Siege (lie)</li>
<li>Formula 1</li>
<li>A Savant at COD Zombies</li>
<li>Undertale / Deltarune</li>
<li>Drawing!</li>
<li>Ur mom :p</li>
</div>
<input
class="radiotab"
tabindex="1"
name="tabs"
type="radio"
id="tabtwo"
/>
<label class="label" for="tabtwo">Favorite Musics</label>
<div class="panel" tabindex="1">
<div class="music_content" display="flex" flex-direction="row" justify-content="space-between">
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/135WMJorhiGvPe50XF54D9?utm_source=generator" width="49%" height="152" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/3HPLfZhQUds6N6tZ4WiApn?utm_source=generator" width="49%" height="152" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/1CeC8kOYxUTCC2wHGtWROD?utm_source=generator" width="49%" height="152" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/track/53eMEHD5vu4kRB458TCuiM?utm_source=generator" width="49%" height="152" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
</div>
</div>
<input
class="radiotab"
tabindex="1"
name="tabs"
type="radio"
id="tabthree"
/>
<label class="label" for="tabthree">Contacts</label>
<div class="panel" tabindex="1">
<h2>Links To My Social Media</h2>
<div class="links">
<a href="https://www.youtube.com/@Flowenone" class="cs-btn yt"></a>
<a href="https://x.com/Floowenpc" class="cs-btn x"></a>
<a href="https://github.com/Floowen" class="cs-btn gh"></a>
<a href="https://www.reddit.com/user/Flowen76/" class="cs-btn r"></a>
</div>
</div>
</div>
<br>
<hr class="cs-hr">
<br>
<div class="imagecontent">
<div class="imagebox">
<img src="assets/image2.png" class="image">
</div>
<div>
<button class="cs-btn" onclick="document.getElementById('background-audio').play()">Play Music</button>
<button class="cs-btn" onclick="document.getElementById('background-audio').pause(); document.getElementById('background-audio').currentTime = 0;">Stop Music</button>
<div class="cs-slider">
<div class="value">
<p>Low</p>
<p>High</p>
</div>
<div class="ruler"></div>
<input type="range" id="volume-control" min="0" max="0.5" step="0.01" value="0.1" onchange="document.getElementById('background-audio').volume = this.value">
<label for="volume-control">Audio Volume</label>
<br>
</div>
</div>
</div>
<br>
<hr class="cs-hr">
<footer>
<p>© 2025 Floowen | cs 1.6 css by <a href="https://samke.me">samuel</a></p>
</footer>
</div>
</body>
</html>