-
Notifications
You must be signed in to change notification settings - Fork 0
/
new 7.html
92 lines (91 loc) · 2.56 KB
/
new 7.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ad Unit Example</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
.wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.row {
display: flex;
justify-content: center;
align-items: center;
flex: 1;
padding: 20px;
}
.content {
max-width: 800px;
padding: 20px;
background-color: white;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.column {
flex: 1;
padding: 10px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="row">
<div class="content">
<h1>Welcome to My Website</h1>
<p>This is some example content for the top row.</p>
</div>
</div>
<div class="row">
<div class="column">
<!-- Google AdSense Unit 1 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-1053706117913370"
data-ad-slot="9136487637"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="column">
<!-- Google AdSense Unit 2 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-1053706117913370"
data-ad-slot="9136487637"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="column">
<!-- Google AdSense Unit 3 -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-1053706117913370"
data-ad-slot="9136487637"
data-ad-format="auto"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
<div class="row">
<div class="content">
<p>This is some example content for the bottom row.</p>
</div>
</div>
</div>
</body>
</html>