-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (79 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>MAIN PAGE</title>
</head>
<body>
<div class="container">
<h1>Welcome to my first ever made website</h1>
<h2> Check out my youtube and other stuff at https://bio.link/vxry</h2>
<h2> Please and thank you.</h2>
<a href="./about.html"><h2>Click here to learn about me </h2></a>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width-device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>MAIN PAGE</title>
</head>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Change Background Color</title>
</head>
<body>
<button onclick="changeBackgroundColor()">Change Background Color</button>
<script>
function changeBackgroundColor() {
// Replace with your desired RGB values
var red = 255; // Red value
var green = 0; // Green value
var blue = 0; // Blue value
// Construct the RGB color string
var rgbColor = 'rgb(' + red + ',' + green + ',' + blue + ')';
// Change the background color of the body
document.body.style.backgroundColor = rgbColor;
}
</script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Social Media Buttons</title>
<style>
.social-btn {
display: inline-block;
margin: 5px;
padding: 10px 15px;
border-radius: 5px;
color: #fff;
font-size: 16px;
text-decoration: none;
text-align: center;
}
.discord { background-color: #7289DA; }
.youtube { background-color: #FF0000; }
.instagram { background-color: #C13584; }
.tiktok { background-color: #000000; }
</style>
</head>
<body>
<!-- Discord Button -->
<a href="https://discord.gg/w2XmJgHwrt" class="social-btn discord" target="_blank">Discord</a>
<!-- YouTube Button -->
<a href="https://www.youtube.com/channel/UC-hmJ_Lr1KymdQC7P_KifXg" class="social-btn youtube" target="_blank">YouTube</a>
<!-- Instagram Button -->
<a href="https://www.instagram.com/sclrxd_mw2/" class="social-btn instagram" target="_blank">Instagram</a>
<!-- TikTok Button -->
<a href="https://www.tiktok.com/@vxry_codm" class="social-btn tiktok" target="_blank">TikTok</a>
</body>
</html>