-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprem.html
More file actions
57 lines (50 loc) · 1.4 KB
/
prem.html
File metadata and controls
57 lines (50 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Anta&display=swap" rel="stylesheet">
<title>Anime</title>
<style>
h1{
color: white;
font-family: "Anta";
text-align: center;
font-size: 40px;
margin-bottom: 40px;
}
img{
height: 500px;
width: 400px;
}
.imgdiv{
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
}
body{
background-color: black;
}
</style>
</head>
<body>
<div class="container">
<h1>La La Land</h1>
<div class="imgdiv">
<img src="/images/images3/1.jpg">
<img src="/images/images3/2.jpg">
<img src="/images/images3/4.jpg">
<img src="/images/images3/5.jpg">
<img src="/images/images3/6.jpg">
<img src="/images/images3/7.jpg">
<img src="/images/images3/8.jpg">
<img src="/images/images3/9.jpg">
<img src="/images/images3/10.jpg">
<img src="/images/images3/11.jpg">
</div>
</div>
</body>
</html>