35 lines
668 B
PHP
35 lines
668 B
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Documento senza titolo</title>
|
|
<style>
|
|
#myModal{
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
}
|
|
</style>
|
|
<script>
|
|
setTimeout(showModal,1000);
|
|
function showModal(){
|
|
$("#myModal").show()
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="myModal">
|
|
<div class="modal-top">
|
|
<button id="closeBtn">X</button>
|
|
</div>
|
|
<div class="modal-content">
|
|
<img src="https://via.placeholder.com/600x300" alt="modal-image">
|
|
</div>
|
|
<div class="modal-bottom">
|
|
<a href="https://insidethediv.com/" id="startNowBtn">Start Now</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |