-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (114 loc) · 2.93 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
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
<!DOCTYPE html>
<html>
<head>
<title>FOXY WORLD</title>
<style>
/* Centering the content */
body {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
/* Background image */
background-image: url('https://www.hdwallpapers.in/download/ipad_blue_waves_ios_9_desert_retina_sand_dunes_4k_5k_hd_ios_9-HD.jpg');
background-size: cover; /* Adjusts the size of the background image */
color: white;
font-family: Arial, sans-serif;
}
/* Styling the big 'F' container */
.big-f-container {
width: 180px;
height: 180px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
border: 8px solid white;
background-color: transparent;
margin-bottom: 20px;
margin-top: -10px;
}
/* Styling the big 'F' */
.big-f {
font-size: 100px;
z-index: 1;
position: relative;
}
/* Styling the header */
h1 {
margin: 0;
}
/* Styling the search box */
.textbox {
width: 200px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px 0 0 5px;
font-size: 16px;
margin-top: 20px;
}
/* Styling the search button */
.search-btn {
border: none;
width: 50px;
height: 42px;
border-radius: 0 5px 5px 0;
cursor: pointer;
background-image: url('https://cdn.iconscout.com/icon/free/png-256/search-152-498141.png');
background-size: cover;
background-color: #fff;
margin-top: 20px;
}
/* Styling for the question mark button */
.question-btn {
position: fixed;
bottom: 20px;
right: 20px;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
text-decoration: none;
z-index: 9999;
}
/* Styling the question mark inside the button */
.question-mark {
font-size: 24px;
color: black;
}
/* Styling for the version text */
.version-text {
font-size: 12px;
position: absolute;
top: 10px;
left: 10px;
}
</style>
</head>
<body>
<div class="version-text">Version 1.0.0, generated by AI</div>
<div class="big-f-container">
<div class="big-f">F</div>
</div>
<h1>Welcome to FOXY WORLD!</h1>
<form id="searchForm" action="#">
<input type="text" id="searchBox" class="textbox" placeholder="Search FOXY WORLD">
<input type="submit" value="Search" class="search-btn">
</form>
<!-- Question mark button with link -->
<a class="question-btn" href="https://www.youtube.com/watch?v=xvFZjo5PgG0" target="_blank">
<div class="question-mark">?</div>
</a>
<script>
// JavaScript functionality remains unchanged
// ...
</script>
</body>
</html>