-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
111 lines (88 loc) · 2.29 KB
/
about.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
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<style>
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 200px;
background-color: linear-gradient rgb(2,0,36);
}
li a {
display: block;
color: tomato;
padding: 8px 16px;
text-decoration: none;
}
/* Change the link color on hover */
li a:hover {
background-color: tomato;
color: white;
}
</style>
</head>
<body>
<ul>
<li><a href="ged.html">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">about</a></li>
</ul>
</body>
<style>
div.gallery {
margin: 10px;
border: 1px solid #ccc;
float: left;
width: 300px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
body {
background: rgb(2,0,36);
background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(121,9,30,1) 35%, rgba(0,212,255,1) 100%);
}
</style>
</head>
<body>
<div class="gallery">
<a target="_blank" href="https://myanimelist.net/anime/245/Great_Teacher_Onizuka?q=great%20teacher&cat=anime">
<img src="gto.jpg" alt="Cinque Terre" width="600" height="400">
</a>
<div class="desc">An anime about a funny teacher</div>
</div>
<div class="gallery">
<a target="_blank" href="https://myanimelist.net/anime/1021/Kaikan_Phrase">
<img src="kaikan.jpg" alt="Forest" width="600" height="400">
</a>
<div class="desc">A rock band becomes famous</div>
</div>
<div class="gallery">
<a target="_blank" href="https://myanimelist.net/anime/1088/Macross?q=macross&cat=animemac.jfif">
<img src="mac.jfif" alt="Northern Lights" width="600" height="400">
</a>
<div class="desc">An anime about mechas</div>
</div>
<div class="gallery">
<a target="_blank" href="https://myanimelist.net/anime/268/Golden_Boy?q=golden%20boy&cat=anime">
<img src="boy.jfif" alt="Mountains" width="400" height="100">
</a>
<div class="desc">A very random anime</div>
<div class="gallery">
<a target="_blank" href="https://myanimelist.net/anime/57/Beck?q=beck&cat=anime">
<img src="bek.jfif" alt="Mountains" width="600" height="400">
</a>
<div class="desc">Another band anime </div>
</div>
</body>
</html>