-
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
Showing
1 changed file
with
35 additions
and
53 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 |
---|---|---|
@@ -1,65 +1,47 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>SAGA OF KALKI 2898 AD</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>SAGA OF KALKI 2898 AD</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
|
||
<section class="hero-section"> | ||
<div class="overlay"></div> | ||
<div class="content"> | ||
<h1>SAGA OF KALKI 2898 AD</h1> | ||
<p>A gripping action-adventure game set in a dystopian future</p> | ||
<a href="https://techiral.itch.io/saga-of-kalki-2898-ad" class="cta-button">Play Now</a> | ||
</div> | ||
</section> | ||
|
||
<section> | ||
<div class="container"> | ||
<h2>Choose Your Character</h2> | ||
<div class="character-cards"> | ||
<div class="character-card"> | ||
<h3>Bhairav</h3> | ||
<p>Master swordsman with stealth tactics</p> | ||
</div> | ||
<div class="character-card"> | ||
<h3>Ashwathama</h3> | ||
<p>Skilled archer with mystical powers</p> | ||
</div> | ||
<header class="hero-section"> | ||
<div class="overlay"></div> | ||
<div class="content"> | ||
<h1>SAGA OF KALKI 2898 AD</h1> | ||
<p>Experience the epic adventure of Kalki in a dystopian future.</p> | ||
<a href="https://techiral.itch.io/saga-of-kalki-2898-ad" class="cta-button">Download Now</a> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section> | ||
<div class="container"> | ||
<h2>Screenshots</h2> | ||
<div class="screenshot-carousel"> | ||
<img src="screenshot1.jpg" alt="Screenshot 1"> | ||
<img src="screenshot2.jpg" alt="Screenshot 2"> | ||
<img src="screenshot3.jpg" alt="Screenshot 3"> | ||
</header> | ||
|
||
<section class="character-cards container"> | ||
<div class="character-card"> | ||
<h3>Bhairav</h3> | ||
<p>Master swordsman, stealth tactics, enhanced strength.</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section> | ||
<div class="container"> | ||
<h2>Gameplay Trailer</h2> | ||
<div class="video-container"> | ||
<video controls> | ||
<source src="gameplay-trailer.mp4" type="video/mp4"> | ||
Your browser does not support the video tag. | ||
</video> | ||
<div class="character-card"> | ||
<h3>Ashwathama</h3> | ||
<p>Archery, mystical powers, regenerative healing.</p> | ||
</div> | ||
</div> | ||
</section> | ||
</section> | ||
|
||
<section class="screenshot-carousel container"> | ||
<img src="screenshot1.jpg" alt="Screenshot 1"> | ||
<img src="screenshot2.jpg" alt="Screenshot 2"> | ||
<img src="screenshot3.jpg" alt="Screenshot 3"> | ||
</section> | ||
|
||
<section class="video-container container"> | ||
<video src="trailer.mp4" controls></video> | ||
</section> | ||
|
||
<footer> | ||
<p>© 2024 Techiral. All rights reserved.</p> | ||
</footer> | ||
<footer> | ||
<p>© 2024 Techiral. All rights reserved.</p> | ||
</footer> | ||
|
||
<script src="script.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script> | ||
<script src="scripts.js"></script> | ||
</body> | ||
</html> |