サンプルページ(1

このサイトは『WordPressでSEO対策』のテストサイトです。投稿内容に意味がない場合がほとんどですが、カスタマイズ・レイアウトの参考にしてください。

ボタンのサンプル

 

ボックスのリンクボタン

グラデーションのボックスリンクボタン。

金儲け情報 何芸があれば芸能人か? ゲーム攻略動画まとめZ 宮崎県バドミントン協会

 

表示ソース

<a href="リンクURL" class="button001 broken_link" target="_blank">リンク名称</a>
 

 CSS

.button001{
	width:100%;
	font-size: 16px;
	display: inline-block;
	padding: 8px 10px 8px 10px;
 	text-decoration: none;
	color: #000;
	background-image: -webkit-linear-gradient(#fff 0%, #ddd 100%);
	background-image: linear-gradient(#fff 0%, #ddd 100%);
	transition: .4s;
}

.button001:hover{
	background-image: -webkit-linear-gradient(#eee 0%, #ccc 70%);
	background-image: linear-gradient(#eee 0%, #ccc 70%);
}
 

ボックスのリンクボタン2

シンプルなボックスリンクボタン。

金儲け情報 何芸があれば芸能人か? ゲーム攻略動画まとめZ 宮崎県バドミントン協会  

表示ソース

<a href="リンクURL" class="button002 broken_link" target="_blank">リンク名称</a>
 

 CSS

.button002{
	width:100%;
	font-size: 16px;
	display: inline-block;
	padding: 8px 10px;
 	text-decoration: none;
	border-bottom: 1px solid #ccc;
}

.button002 a{
	text-decoration: none;
}

 

リストのリンクボタン

スッキリしたリストのリンクボタン。

 

表示ソース

<ul class="ulb"><li><a href="リンクURL" target="_blank" class="broken_link">リンク名称</a></li></ul>
 

 CSS

.ulb {
	width: 100%;
}
.ulb ul {
	font-size: 16px;
	margin: 0px;
	padding: 0px;
}
.ulb li {
	line-height:18px;
	border-bottom: 1px solid #ccc;
	list-style-position:outside;
	list-style-type : none;
	padding: 5px 15px;
}
.ulb a {
   text-decoration: none;
	font-size: 16px;
}