我对HTML知之甚少。几个小时以来,我一直在寻找和解决这个问题的答案。我正在尝试制作一个居中的HTML按钮并链接到一个网站。有人可以给我代码吗?谢谢。
答案 0 :(得分:0)
制作一个居中的HTML按钮并链接到网站的最简单方法。
<center>
<input type="button" value="Put Your Text Here" onClick="parent.location='http://www.google.com/'">
</center>
答案 1 :(得分:0)
将按钮代码放在<div align='center'>buttoncode</div>
答案 2 :(得分:-1)
<head>
<script type="text/javascript">
function DoIt(){
window.open ('http:somewhere.net','_self',false);
}
</script>
</head>
<body>
<center>
<button onclick="DoIt ()">Put Some Text Here</button>
</center>
</body>
答案 3 :(得分:-1)
将代码置于
之间<center>
</center>
为我工作!