forked from ZohebMOPO/Kelechi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfear.html
84 lines (84 loc) · 2.94 KB
/
fear.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="social-media-marketing.png" type="png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
<title>Fear</title>
</head>
<body>
<p>We don't care much about your mood, but here's something for you.</p>
<div class="flexbox">
<article class="card">
<img src="fear.jpeg" alt="Sample photo">
<div class="text">
<h3>Memes</h3>
<a href="fear-memes.html" class="btn btn-outline-dark">See more</a>
</div>
</article>
<article class="card">
<iframe src="https://www.youtube.com/embed/Dg5SZsUd1P0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<div class="text">
<h3>Videos</h3>
<a href="fear-videos.html" class="btn btn-outline-dark">Watch more</a>
</div>
</article>
<article class="card">
<img src="dino.webp" alt="Sample photo">
<div class="text">
<h3>Game</h3>
<a href="game.html" class="btn btn-outline-dark">Play now</a>
</div>
</article>
<article class="card">
<img src="spotify.png" alt="Sample photo">
<div class="text">
<h3>Playlist</h3>
<a href="https://open.spotify.com/playlist/4mAt2l67W6sAzCzK2V8nAa?si=b2246bada73049b5" class="btn btn-outline-dark">Listen now</a>
</div>
</article>
</div>
</body>
<style>
body {
background-color: #a0f092;
opacity: 0.8;
background-image: radial-gradient(circle at center center, #b3f3a7, #a0f092), repeating-radial-gradient(circle at center center, #b3f3a7, #b3f3a7, 10px, transparent 20px, transparent 10px);
background-blend-mode: multiply;
padding: 20px;
}
p {
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: xx-large;
}
.flexbox {
display: flex;
flex-wrap: wrap;
align-items: stretch;
justify-content: space-evenly;
}
.card {
flex: 0 0 200px;
margin: 10px;
border: 1px solid #ccc;
box-shadow: 2px 2px 6px 0px rgba(0,0,0,0.3);
}
.card img {
max-width: 100%;
}
.card .text {
padding: 0 20px 20px;
}
.card .text > button {
background: gray;
border: 0;
color: white;
padding: 10px;
width: 100%;
}
</style>
</html>