-
Notifications
You must be signed in to change notification settings - Fork 0
/
bonus.html
58 lines (58 loc) · 1.51 KB
/
bonus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bonus</title>
<link rel="stylesheet" href="./topic.css">
<style>
.box-2{
padding: 0;
}
.box-2 h3{
font-size: 2rem;
text-align: center;
}
.box-2 img{
margin: 5px auto;
}
.nbn{
font-size: 1.8rem;
}
@media screen and (max-width:400px) {
.box-2 h3{
font-size: 1.7rem;
}
.nbn{
font-size: 1.4rem;
}
}
@media screen and (max-width:290px) {
.nbn{
font-size: 1.1rem;
}
}
</style>
</head>
<body>
<section id="cont">
<main>
<div class="box-1">
<img src="./Images/bonus.png" alt="emoji">
<h2>Bonus</h2>
<img src="./Images/bonus.png" alt="">
</div>
</main>
<hr>
<div class="box-2">
<h3>" God Bless Author with your Remaining Life Too "</h3>
<img src="./Images/bonus2.png" alt="">
</div>
<hr>
<div class="box-3">
<a href="./coding.html" class="nbn">← Back</a>
<a href="./index.html" class="nbn">⇛ Restart ⇚</a>
</div>
</section>
</body>
</html>