-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnolan.html
53 lines (51 loc) · 2.74 KB
/
nolan.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<!-- JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<style>
.row img{
width: 90%;
height: 90%;
}
.row{
background-color: #ff165d;
}
center{
color: white;
}
</style>
</head>
<body>
<div class="container-fluid bg-dark">
<h2 style="text-align: center;color: white;">Nolan's Top 5 Films</h2>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-4 my-2">
<img class="img-thumbnail mx-auto d-block" src="https://i.pinimg.com/originals/ba/8a/44/ba8a447ca195acdb489e512af234c089.jpg"><center><h5>Inception</h5></center>
</div>
<div class="col-sm-4 my-2">
<img class="img-thumbnail mx-auto d-block" src="https://i.ytimg.com/vi/K3A5-kseHi8/maxresdefault.jpg"><center><h5>The Prestige</h5></center>
</div>
</div>
<div class="row pt-4" >
<div class="col-sm-4 my-2">
<img class="img-thumbnail mx-auto d-block" src="https://images.hdqwalls.com/download/interstellar-movie-hd-1366x768.jpg"><center><h5>Interstellar</h5></center>
</div>
<div class="col-sm-4 my-2">
<img class="img-thumbnail mx-auto d-block" src="https://www.filmyfenil.com/wp-content/uploads/2017/07/Dunkirk-poster.jpg"><center><h5>Dunkirk</h5></center>
</div>
<div class="col-sm-4 my-2">
<img class="img-thumbnail mx-auto d-block" src="https://images.indianexpress.com/2019/08/the-dark-knight-1200.jpg"><center><h5>The Dark Knight</h5></center>
</div>
</div>
</div>
</body>
</html>