<!-- Native Ad HTML -->
<div class="native-ad">
<div class="native-ad-thumbnail">
<img src="https://example.com/image.jpg" alt="Ad Image" width="1200" height="627">
</div>
<div class="native-ad-content">
<div class="native-advertiser">Advertiser Name Here</div>
<h1><a href="https://example.com" target="_blank">Ad Headline Here</a></h1>
<p>Ad body text goes here. Make it engaging and relevant to your audience.</p>
<div class="native-ad-cta"><a href="https://example.com" target="_blank">Call to Action</a></div>
<div class="native-ad-attribution">SPONSORED</div>
</div>
</div>
<!-- Native Ad CSS -->
<style>
.native-ad {
background-color: #f9f9f9;
font-family: Arial, sans-serif;
padding: 15px;
border: 1px solid #ddd;
border-radius: 5px;
display: flex;
align-items: center;
}
.native-ad-thumbnail {
margin-right: 15px;
}
.native-ad-content {
flex: 1;
}
.native-advertiser {
font-size: 14px;
color: #555;
margin-bottom: 5px;
max-width: 25ch; /* Ensures the text does not exceed 25 characters */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.native-ad-content h1 {
font-size: 18px;
margin: 0 0 10px;
max-width: 25ch; /* Ensures the text does not exceed 25 characters */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.native-ad-content a {
color: #0073e6;
text-decoration: none;
}
.native-ad-content p {
font-size: 14px;
color: #555;
margin: 0 0 10px;
max-width: 90ch; /* Ensures the text does not exceed 90 characters */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.native-ad-cta a {
font-size: 14px;
color: #0073e6;
text-decoration: none;
font-weight: bold;
max-width: 15ch; /* Ensures the text does not exceed 15 characters */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.native-ad-attribution {
font-size: 10px;
color: #999;
text-transform: uppercase;
font-weight: bold;
}
</style>
2
2
1KB
2KB
147.0ms
164.0ms
200.0ms