-
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.
v1.0.5: Update index to show new script src
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>When is Alia Bhatt's next movie coming out?</title> | ||
<link href="https://fonts.googleapis.com/css?family=Arimo" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css?family=Unica+One" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans" rel="stylesheet"> | ||
<link rel="stylesheet" href="style.css" id="stylesheet" /> | ||
|
||
</head> | ||
|
||
<body> | ||
<section class="text-info"> | ||
<h1>Alia Bhatt's next movie is | ||
<span data-title></span>.</h1> | ||
<h2>It comes out in...</h2> | ||
<div data-clock> | ||
<div> | ||
<span data-days></span> | ||
<div data-small>days</div> | ||
</div> | ||
<div> | ||
<span data-hours></span> | ||
<div data-small>hours</div> | ||
</div> | ||
<div> | ||
<span data-minutes></span> | ||
<div data-small>minutes</div> | ||
</div> | ||
<div> | ||
<span data-seconds></span> | ||
<div data-small>seconds</div> | ||
</div> | ||
</div> | ||
<p data-description></p> | ||
<p>It is directed by | ||
<span data-director></span>.</p> | ||
<p>It also stars | ||
<span data-stars></span>.</p> | ||
<div id="youtube"></div> | ||
<p>Get more info about | ||
<span data-title></span> at | ||
<span data-link></span>.</p> | ||
</section> | ||
<footer> | ||
<div class="footer-left"> | ||
<a href="http://tmdb.org"> | ||
<img src="https://www.themoviedb.org/static_cache/v4/logos/stacked-green-cae7a95e2590dbdde28284ac26245cb2792788838f5c498b892e8d01c183e6f3.svg"> | ||
</a> | ||
</div> | ||
<div class="footer-right"> | ||
Built by | ||
<a href="http://rmorabia.com">Radhika Morabia</a>. | ||
<br> Source on | ||
<a href="http://github.com/rmorabia/alia">GitHub</a>. | ||
<br> | ||
<small>This product uses the TMDb API but is not endorsed or certified by TMDb.</small> | ||
</div> | ||
</footer> | ||
<script src="https://rmorabia.com/alia/script.js"></script> | ||
</body> | ||
|
||
</html> |