-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavouriteMovies.html
More file actions
49 lines (42 loc) · 2.01 KB
/
favouriteMovies.html
File metadata and controls
49 lines (42 loc) · 2.01 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
<!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">
<!-- favicon -->
<link rel="icon" type="image/png" sizes="16x16" href="movies-icon-png-8.jpg">
<!-- page title -->
<title>My IMDB | Favourite Movies Page</title>
<!-- for bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<header>
</header>
<main>
<div class="container px-4 py-5" id="custom-cards">
<h2 class="pb-2 border-bottom">My Favourite Movies</h2>
<div id="myfavourt" class="row row-cols-4 row-cols-lg-4 align-items-stretch g-4 py-5">
<div class="col">
<div class="card h-100" id="now-movie-card-1">
<img class="card-img-top" alt="Movies photo">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">More Info >> </a>
<button type="button" class="btn btn-secondary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path>
</svg>
</button>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Link javascript file -->
<script src="favourt.js"></script>
</body>
</html>