<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>热门活动</title> </head> <body> <h1>热门活动</h1> <ul> <li><img src="img/img1.png"</li><br/> <h3>推荐 ...
分类:
Web程序 时间:
2017-10-23 12:54:43
阅读次数:
245
css选择器 1.元素选择器:元素名{声明块} 2.类选择器:.类名{声明块} 3.id选择器:#id名{声明块} 4.组合选择器:例子:h1,h2,h3{声明块} 5.伪类选择器: 元素名:伪类名称 例子: a:link(未访问) a:visited(已访问) a:hover(鼠标悬浮) a:ac ...
分类:
Web程序 时间:
2017-10-22 21:01:12
阅读次数:
182
代码如下: <!DOCTYPE html><html><head><meta charset=utf-8 /><title>before、after</title><style>.box h3{ text-align:center; position:relative; top:80px;}.box ...
分类:
其他好文 时间:
2017-10-19 14:04:33
阅读次数:
1256
先看一段代码(代码块不用{}括起) for (int i = 0; i < 3; i++) out.println("<h3>我的理想是上天<h3>"); String str = "上天啦上天啦"; out.print(str + "<br>"); out.println("哈哈"); 输出结果是 ...
分类:
其他好文 时间:
2017-10-17 09:56:15
阅读次数:
184
<!DOCTYPE html><html><head><meta charset="UTF-8"><title>学生信息注册页面</title></head><body> <h3 align="center">学生信息注册</h3> <from name="stu" action=""> <tabl ...
分类:
编程语言 时间:
2017-10-12 00:52:51
阅读次数:
242
body,h1,h2,h3,h4,h5,h6,hr,p,dl,dt,dd,ul,ol,li,form,fieldset,legend,button,input,textarea,th,td{margin:0;padding:0;}body,button,input,select,textarea{f ...
分类:
Web程序 时间:
2017-10-11 23:47:20
阅读次数:
172
10.10号笔记<h1>标题</h1><h2>标题</h2><h3>标题</h3><h4>标题</h4><h5>标题</h5><h6>标题</h6> 这是标题标签<script>内容</script> 标记<script src="abc,js"></script> 相当于载入外部js<hr/> 这 ...
分类:
其他好文 时间:
2017-10-11 19:08:57
阅读次数:
126
今天给出一个例程,像是个小游戏!哈哈 一 html //anagram.html <!DOCTYPE HTML> <html> <head> <title>Anagram</title> </head> <body> <h3>Pile:</h3> <div id="letterpile"></div ...
分类:
Web程序 时间:
2017-10-10 20:38:47
阅读次数:
204
google:var h3 = document.getElementsByTagName('h3'); for(var i=0;i<h3.length;i++){ var a = h3[i]. getElementsByTagName('a'); console.log(a[0].href); }... ...
分类:
Web程序 时间:
2017-10-09 14:09:51
阅读次数:
193
css属性选择器 css优先级 css样式 @charset "utf-8"; body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, button, input, textarea, th, td { mar ...
分类:
Web程序 时间:
2017-10-07 18:40:08
阅读次数:
215