-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyoutube.html
More file actions
130 lines (112 loc) · 3.42 KB
/
Copy pathyoutube.html
File metadata and controls
130 lines (112 loc) · 3.42 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
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>YouTube | Skybl0cker</title>
<link href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css" rel="stylesheet">
<link rel="icon" type="image/png" href="logo.png">
<style>
body {
background-color: #2c2c2c;
color: #ffffff; /* Set all text to white */
font-family: 'Courier New', Courier, monospace;
margin: 0;
padding: 20px;
text-align: center;
}
/* Add padding and style the cards */
.container {
padding: 20px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: #ffffff; /* Ensure heading is white */
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
}
.card {
background: #1e1e1e;
padding: 15px;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
.card img {
width: 100%;
border-radius: 8px;
}
.card h3 {
margin-top: 10px;
font-size: 1.5rem;
color: #ffffff; /* Ensure card title is white */
}
.card p {
font-size: 1rem;
color: #ffffff; /* Ensure paragraph is white */
}
a {
color: #ffffff; /* Ensure links are white */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Navigation Styling */
nav {
text-align: left;
margin-bottom: 20px;
}
nav ul {
list-style: none;
display: flex;
gap: 15px;
}
nav ul li a {
color: #ffffff; /* Ensure nav links are white */
text-decoration: none;
font-weight: bold;
}
</style>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">/home</a></li>
<li><a href="youtube.html">/youtube</a></li>
<li><a href="github.html">/github</a></li>
<li><a href="about.html">/about</a></li>
</ul>
</nav>
<div class="container">
<h1>My Latest YouTube Videos</h1>
<div class="card-grid">
<!-- Video 1 -->
<div class="card">
<img src="https://via.placeholder.com/300x180" alt="Coming Soon">
<h3>Coming Soon...</h3>
<p>Stay tuned for more exciting videos!</p>
</div>
<!-- Placeholder Videos -->
<div class="card">
<img src="https://via.placeholder.com/300x180" alt="Coming Soon">
<h3>Coming Soon...</h3>
<p>Stay tuned for more exciting videos!</p>
</div>
<div class="card">
<img src="https://via.placeholder.com/300x180" alt="Coming Soon">
<h3>Coming Soon...</h3>
<p>Stay tuned for more exciting videos!</p>
</div>
</div>
</div>
</body>
</html>