-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
841d41a
commit 90451f9
Showing
5 changed files
with
101 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,55 +2,49 @@ | |
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>HomeLand Movies</title> | ||
<!-- Link to your custom CSS file --> | ||
<link rel="stylesheet" href="/assets/css/index.css" /> | ||
<link rel="stylesheet" href="/assets/css/index.css"> | ||
<!-- Link to your favicon --> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon.ico"> | ||
<!-- Link to Tailwind CSS --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | ||
<!-- Link to Bootstrap CSS --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" /> | ||
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> | ||
</head> | ||
|
||
<body> | ||
<h3>hello movies</h3> | ||
<!-- HTML markup for the new movie card --> | ||
<div id="movie-details-card" class="box"> | ||
<div class="container mx-auto"> | ||
<div class="flex size-48"> | ||
<div class="size-48"> | ||
<div class="relative flex flex-col mt-24 bg-white shadow-md rounded-xl w-96"> | ||
<div | ||
class="relative h-96 mx-6-mt-6 overflow-hidden bg-blue-gray-500/40 rounded-xl shadow-blue-gray-500/40"> | ||
<img id="movie-poster" class="movie-poster-search" src="" alt="poster_path" /> | ||
</div> | ||
<div class="p-6"> | ||
<h5 id="movie-title" class="movie-title-search text-xl font-semibold text-blue-gray-900"> | ||
</h5> | ||
<p id="movie-description" | ||
class="movie-description-search h-24 text-base font-light leading-relaxed text-inherit"> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<header class="mb-9"> | ||
<a href="index.html" class="block"> | ||
<div id="main-text-bar"></div> | ||
<h2 class="mb-2 mt-0 text-4xl font-medium leading-tight text-primary"> | ||
HomeLand Movies: A Collection of Movies | ||
</h2> | ||
</a> | ||
</header> | ||
|
||
<main> | ||
<!-- HTML markup for the new movie card --> | ||
</main> | ||
|
||
<!-- Using utilities: --> | ||
<div class="flex flex-row ml-32 py-3"> | ||
<a href="./index.html" class="inline-block"> | ||
<button class="font-bold text-center uppercase text-xs py-3 px-6 rounded-lg bg-gray-900 text-white shadow-md hover:shadow-lg focus:opacity-[0.85] focus:shadow-none active:opacity-[0.85] active:shadow-none learn-more-button"> | ||
Go Back | ||
</button> | ||
</a> | ||
</div> | ||
|
||
|
||
|
||
|
||
<a href="./index.html" class="btn btn-block btn-danger">← Go back.</a> | ||
|
||
|
||
<footer class="text-center"> | ||
© 2024 My New Website Productions | ||
</footer> | ||
|
||
<!-- Script placeholder --> | ||
<script src="/assets/js/api.js"></script> | ||
|
||
</body> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters