-
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
81 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,81 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Sery College Dolly Dress Up H5 - Hushy Games</title> | ||
<link rel="stylesheet" href="/styles.css"> | ||
<style> | ||
/* Button Style */ | ||
button { | ||
padding: 10px 20px; | ||
background-color: #0078D4; | ||
color: #fff; | ||
border: none; | ||
border-radius: 5px; | ||
font-size: 16px; | ||
cursor: pointer; | ||
transition: background-color 0.3s ease; | ||
margin-top: 10px; /* Added margin for spacing */ | ||
} | ||
|
||
button:hover { | ||
background-color: #005a9e; | ||
} | ||
|
||
/* Description Style */ | ||
.game-description { | ||
margin-top: 20px; | ||
font-size: 14px; | ||
line-height: 1.5; | ||
} | ||
|
||
.update-date { | ||
font-style: italic; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Hushy Games</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="/index.html">Home</a></li> | ||
<li><a href="/index.html">Games</a></li> | ||
<li><a href="/about.html">About</a></li> | ||
<li><a href="/contact.html">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<section class="game-details"> | ||
<h2>Sery College Dolly Dress Up H5</h2> | ||
<div class="game-content"> | ||
<iframe id="iplayer-game" src="https://html5.gamedistribution.com/84f5ddd735176becc72c3b1ff424149e/?gd_sdk_referrer_url=https://gamedistribution.com/games/sery-college-dolly-dress-up-h5/" frameborder="0" width="100%" height="800px"></iframe> | ||
<button onclick="toggleFullscreen()">Toggle Fullscreen</button> | ||
</div> | ||
<div class="game-description"> | ||
<p>Sery is so excited for her first day of college that she cant decide what to wear Join her in this amazing dress up game and open up the boxes to find different items Pick up a glamorous top skirt and go through sparkly accessories that can complete the outfit Dont forget to save a picture with the look you created Sery will love your fashion skills</p> | ||
<p class="update-date">Last updated: August 27, 2024</p> | ||
</div> | ||
</section> | ||
<footer> | ||
<p>© 2024 Hushy Games. All rights reserved.</p> | ||
</footer> | ||
|
||
<script> | ||
function toggleFullscreen() { | ||
var iframe = document.getElementById('iplayer-game'); | ||
if (iframe.requestFullscreen) { | ||
iframe.requestFullscreen(); | ||
} else if (iframe.mozRequestFullScreen) { /* Firefox */ | ||
iframe.mozRequestFullScreen(); | ||
} else if (iframe.webkitRequestFullscreen) { /* Chrome, Safari & Opera */ | ||
iframe.webkitRequestFullscreen(); | ||
} else if (iframe.msRequestFullscreen) { /* IE/Edge */ | ||
iframe.msRequestFullscreen(); | ||
} | ||
} | ||
</script> | ||
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-5915300167971740" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |