查看目录
做网站的目标通常都是为了盈利,而网站盈利模式中,广告收入无疑是很重要的组成部分,但是什么样的广告更吸引人?更能引导用户完成点击呢?那肯定需要比较醒目才可以,今天就给大家分享一段醒目的自适应彩色格子广告代码,这是很多网站都可以通用的文字广告代码。
彩色格子广告代码效果:
1、DIV部分:
将下面代码插入网页任意你想展示文字广告的位置
<div class="txtguanggao"> <a href="#1" target="_blank" class="dh">超低价文字广告位</a> <a href="#2" target="_blank" class="dh">超低价文字广告位</a> <a href="#3" target="_blank" class="dh">超低价文字广告位</a> <a href="#4" target="_blank" class="dh">超低价文字广告位</a> <a href="#5" target="_blank" class="dh">超低价文字广告位</a> <a href="#6" target="_blank" class="dh">超低价文字广告位</a> <a href="#7" target="_blank" class="dh">超低价文字广告位</a> <a href="#8" target="_blank" class="dh">超低价文字广告位</a> </div>
2、CSS部分:
下面是这段自适应彩色格子广告代码的CSS样式,前端的文字广告之所以能够以彩色展示并且自适应客户端浏览器,完美的展示给用户,这段CSS代码至关重要,可以说这段CSS是这段广告代码的灵魂所在。
/**彩色格子广告**/ .txtguanggao { margin: 10px 0 -3px; width: calc(100% + 3px); overflow: hidden; } .txtguanggao a { margin: 0 3px 3px 0; width: calc(25% - 3px); float: left; line-height: 32px; height: 32px; text-align: center; color: #fff; } .txtguanggao a:nth-child(1) { background-color: #dc3545; } .txtguanggao a:nth-child(2) { background-color: #007bff; } .txtguanggao a:nth-child(3) { background-color: #28a745; } .txtguanggao a:nth-child(4) { background-color: #ffc107; } .txtguanggao a:nth-child(5) { background-color: #28a745; } .txtguanggao a:nth-child(6) { background-color: #ffc107; } .txtguanggao a:nth-child(7) { background-color: #dc3545; } .txtguanggao a:nth-child(8) { background-color: #007bff; } .txtguanggao a:hover { background: #FF2805; color: #FFF } @media screen and (max-width: 768px) { .txtguanggao a { width: calc(50% - 3px); } }
总结:
有了这段比较醒目的彩色格子广告代码,并不代表网站就可以盈利了,因为广告再好看,也要有足够的用户浏览,才会产生点击。那么怎么获得足够的用户流量呢?一定要有充足的高质量内容!
对于网站来说,广告和内容都非常重要,它们相辅相成,缺一不可。广告则是网站的重要收入来源之一,也是推广网站和吸引流量的重要方式。合理的广告设置可以增加网站的收入和知名度,同时也不会影响用户的体验和访问。
内容是网站的基础和核心,是吸引用户访问和留住用户的关键。没有好的内容,网站就失去了吸引力和存在的意义。优质的内容可以增加用户的黏性和忠诚度,提高网站的知名度和品牌价值。