-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (93 loc) · 3.75 KB
/
Copy pathindex.html
File metadata and controls
96 lines (93 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Welcome to Space_coder1000's personal page! Explore my coding projects, Scratch creations, and more.">
<meta name="keywords" content="coding, Scratch, programming, GitHub, web development">
<link rel="icon" href="zicon.ico" type="image/x-icon">
<title>Space_coder1000</title>
<style>
body {
background-image: url('https://img.pikbest.com/ai/illus_our/20230427/f549693d2864de408058c14cb74e78f3.jpg!w700wp');
background-size: cover;
color: #00ffcc;
font-family: 'Courier New', monospace;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
overflow: hidden; /* Prevents page overflow */
}
h1 {
text-shadow: 0 0 20px #00ffcc;
margin: 20px auto;
text-align: center;
}
p {
max-width: 800px;
margin: 20px auto;
line-height: 1.6;
background: rgba(0, 0, 0, 0.7);
padding: 20px;
border-radius: 10px;
text-shadow: 0 0 10px #00ffcc;
overflow-wrap: break-word; /* Prevents text overflow */
}
a {
color: #00ffcc;
text-decoration: none;
transition: color 0.3s;
}
a:hover {
color: #ffcc00;
text-shadow: 0 0 10px #ffcc00;
}
footer {
background: rgba(0, 0, 0, 0.7);
color: #00ffcc;
padding: 20px;
width: 100%;
text-align: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
position: relative;
margin-top: auto;
}
.button {
background-color: #00ffcc;
border: none;
color: black;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 10px 5px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s;
text-shadow: 0 0 10px #00ffcc;
}
.button:hover {
background-color: #ffcc00;
transform: scale(1.05);
}
</style>
</head>
<body>
<h1>Welcome to Space_coder1000's Page!</h1>
<p>Hello! I'm Space_coder1000, an enthusiastic coder passionate about creating interactive projects and exploring various technologies. My journey started on Scratch, where I developed fun games and animations. Since then, I've expanded into web development, focusing on HTML, CSS, and JavaScript.</p>
<p>Feel free to check out my projects on GitHub, where I share open-source code and collaborate with others. My main interests include front-end development, game design, and creating engaging user experiences.</p>
<footer>
<p>© 2024 Space_coder1000. All rights reserved.</p>
<div>
<a href="https://scratch.mit.edu/users/space_coder1000/" target="_blank" class="button">My Scratch Profile</a>
<a href="https://github.com/SpaceCoder1000?tab=repositories" target="_blank" class="button">My GitHub Profile</a>
<a href="https://spacecoder1000.github.io/SCA.com/index.html" target="_blank" class="button">Arcade</a>
</div>
</footer>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1020363636228942"
crossorigin="anonymous"></script>
</body>
</html>