Tag Archive for 'html'

[小记]JS简单加密页面

用JS搞个简单的页面加密……
以下是代码:

新版家乐福网站上线

家乐福网站终于是恢复了
改版了
现在是全新的版本……
现在是FLASH+HTML的
真是怀疑原来的数据是不是被某些人给清空了……
呃呃。。。
上截图:

微软的msnusers给你提供的免费空间

好久以前就对网上邻居里面的那个蝴蝶图标感到奇怪了……
也是我见识太少……今儿才发现这个东西……
所以进去瞅了一眼……
结果……
只能运行HTML,而不能运行ASP……
嘿嘿……(我要运行ASP干嘛??)
点击这里就可以看到我发表的东西了~~~一个CSS的上拉菜单

link里面含有尖括号<>的都不显示?

突然发现一个对我来说很稀奇的HTML语法…..
测试一下
果然出问题了….我不知道这算不算是Wp的Bug:
本来我写的只是这样的:
link里面含有"<"">"的都不显示?
非要给我输出成这样的:
<h2><a href="http://www.fucklenovo.com/wp/2008/03/05/html-a-link-title-off-echo/" rel="bookmark" title="Permanent Link to link里面含有&#8221;<"">&#8220;的都不显示?">link里面含有&#8221;<"">&#8220;的都不显示?</a></h2>
----------
TEST BUG
在标题里面加上了,现在已经修复![V=2.5.1]
Upadte 2008.4.26 14:18

图片绝对居中

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>图片绝对居中</title>
<style media="screen" type="text/css">
.holder{width:500px; height:200px; display:table; position:relative; margin:12px auto; border:1px solid #596480; background:#ffc;}
.holder div{*position:absolute; top:50%; left:0; display:table-cell; vertical-align:middle; width:100%;}
.holder p{position: relative; top:-50%; text-align:center; margin:0; padding:0;}
</style>
</head>
<body>
<div class="holder">
<div><p><img src="/wp/wp-content/themes/fucklenovo/images/aboutme.gif" /></p></div>
</div>
</body>
</html>

提示:您可以先修改部分代码再运行

CSS下拉菜单一个

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS下拉菜单</title>
<style type="text/css">
<!–
/* Main Styles */
body{
margin: 5px 0;
padding: 0;
background-color: #000;
color: #949494;
text-align: center;
font-family: Tahoma, Arial, Verdana, sans-serif;
font-size: 11px;
}
ul{
list-style-type: none;
}
a.gen{
color: #949494;
text-decoration: none;
font-weight: bold;
}
a.gen:hover{
[...]