-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.25 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World with Advertising</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.content {
text-align: center;
}
.ad-container {
border: 2px solid black; /* Add a black border around the advertising tag */
padding: 10px; /* Add some padding to the container */
margin-top: 20px; /* Add some space between the content and the advertising tag */
}
</style>
</head>
<body>
<div class="content">
<h1>Hello, World!</h1>
<div class="ad-container"> <!-- Wrap the advertising tag in a div with a class -->
<!-- Revive Adserver Asynchronous JS Tag - Generated with Revive Adserver v5.5.1 -->
<ins data-revive-zoneid="4" data-revive-id="ba438dac9332c0bc3ab972c7f963667b"></ins>
<script async src="//16.171.41.51:8080/www/delivery/asyncjs.php"></script>
</div>
</div>
</body>
</html>