-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 1.79 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>
FLEX
</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500&display=swap" rel="stylesheet"/>
<style>
body{
margin: 10px;
background-color: #DCDCDC;
}
.cont{
display : flex;
flex-wrap : wrap;
justify-content : center;
}
img{
width: 450px;
height: 350px;
margin: 10px;
transition: all 1s;
box-shadow: 4px 4px 4px #883885;
}
img:hover{
transform: scale(2);
}
body{
font-family: 'Roboto Slab', serif;
}
h1{
text-align: center;
font-family: 'Roboto Slab',serif;
margin: auto;
padding: 10px;
overflow: hidden;
background-color: rgb(66, 52, 14);
color: #fff;
}
</style>
</head>
<body>
<h1><center>Breaking Bad</center></h1>
<br>
<hr>
<Marquee>Digvijay Srivastava 1906188</Marquee>
<hr>
<br>
<div class="cont">
<img src="ww.jpg" alt="Walter White">
<img src="skyler.webp" alt="Walter White">
<img src="walterjr.jpg" alt="Walter White">
<img src="jesse.jpg" alt="Walter White">
<img src="hank.jpg" alt="Walter White">
<img src="gustavo.jpg" alt="Walter White">
<img src="saul.jpg" alt="Walter White">
<img src="jane.jpg" alt="Walter White">
<img src="badger.jpg" alt="Walter White">
<img src="hector.jpg" alt="Walter White">
</div>
</body>
</html>