<!DOCTYPE html>
<html lang="en">
<head>
<title>这是我的个人博客</title>
<meta charset="UTF-8">
</head>
<body>
<center><a name ="top"><a=href="#bottom">去底部</a=href="#bottom">a></a> | <a hred="#x">去指定位置</a></center>
<hr>
<p>
一盏离愁孤灯伫立在窗口<br>
我在门后假装你人还没走<br>
旧地如重游月圆更寂寞<br>
夜半清醒的烛火不忍苛责我<br>
一壶漂泊浪迹天涯难入喉<br>
你走之后酒暖回忆思念瘦<br>
水向东流时间怎么偷<br>
花开就一次成熟我却错过<br>
谁在用琵琶弹奏一曲东风破<br>
<img src="">>
岁月在墙上剥落看见小时候<br>
犹记得那年我们都还很年幼<br>
而如今琴声幽幽我的等候你没听过<br>
谁在用琵琶弹奏一曲东风破<br>
枫叶将故事染色结局我看透<br>
篱笆外的古道我牵着你走过<br>
荒烟漫草的年头就连分手都很沉默<br>
一壶漂泊浪迹天涯难入喉<br>
你走之后酒暖回忆思念瘦<br>
水向东流时间怎么偷<br>
花开就一次成熟我却错过<br>
谁在用琵琶弹奏一曲东风破<br>
岁月在墙上剥落看见小时候<br>
犹记得那年我们都还很年幼<br>
而如今琴声幽幽我的等候你没听过<br>
谁在用琵琶弹奏一曲东风破<br>
枫叶将故事染色结局我看透<br>
篱笆外的古道我牵着你走过<br>
荒烟漫草的年头就连分手都<br>
谁在用琵琶弹奏一曲东风破<br>
岁月在墙上剥落看见小时候<br>
犹记得那年我们都还很年幼<br>
而如今琴声幽幽我的等候你没听过<br>
谁在用琵琶弹奏一曲东风破<br>
枫叶将故事染色结局我看透<br>
篱笆外的古道我牵着你走过<br>
荒烟漫草的年头就连分手都很沉默<br>
</p>
<center>友情链接 | <a href="https://www.jianshu.com/u/50b3398fc647"target="_blank">我的简书</a> <center><a name="bottom"><a href="#top">回到顶部</a></a> | <a href="http://www.baidu.com" target="_blank">联系我们</a></center>
</body>
</html>
小游戏:
第一关 plate ,(plate元素)
第二关 bento ,(bento元素)
第三关 #fancy ,(id为fancy的元素)
第四关 plate apple ,(plate祖先元素下的apple后代元素)
第五关 #fancy pickle ,(id为#fancy的祖先元素下的pickle后代元素)
第六关 .small ,(组为small的元素)
第七关 orange.small ,(组为small的orange元素)
第八关 bento>orange.small ,(bento父元素下的组为small的orange子元素)
第九关 plate,bento,div ,(plate,bento兄弟元素在div元素中)
第十关 * ,(代表所有元素)
第十一关 plate> ,(plate父元素的所有ziyuansu)
第十二关 plate + apple ,(兄弟元素选择器,plate元素的后一个元素)
第十三关 bento~pickle ,(兄弟元素选择器,bento元素后的多个pickle元素)
第十四关 plate>apple ,(plate父元素下的apple子元素)
第十五关 plate orange:first-child , (子元素选择器,plate元素下的第一个orange元素)
第十六关 plate :only-child
,(所有plate元素下的元素)
第十七关 #fancy :last-child,pickle:last-child ,(id为fancy的元素的最后一个和pickle元素的最后一个)
第十八关 div plate:nth-child(3)
,(div元素中的第三个plate元素)
第十九关 div bento :nth-last-child(4) ,(div元素中倒数第四个bento元素)
第二十关 apple:first-of-type (第一个apple元素)
第二十一关 plate:nth-of-type(even) ,(所有偶数个的plate元素)
第二十二关 plate:nth-of-type(3),plate:nth-of-type(5) ,(plate元素下的第3个和第5个元素)
第二十三关 plate apple.small:only-of-type ,(plate元素下满足apple.small元素的唯一一个元素)
第二十四关 orange.small:last-of-type,apple.small:last-of-type ,(是orange.samll和apple.small元素的最后一个元素)
第二十五关 bento:empty ,(bento元素里没有包括额外元素)
第二十六关 apple:not(.small) ,(apple里没有组是.small的元素)
HTML 超文本标记语言
html基本基本界面
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>网页标题</title>
</head>
<body>
</body>
</html>
1,plate元素选择器 2,bento元素选择器 3,#fancyID选择器 4,plateapple后代元素选择器 5,#fancypickle复合选择器 6,.small类选择器 7,bento.small,plate.small并集选择器 8,bentoorange后代元素选择器 9,plate,bento,plate并集选择器 10, * 通配选择器 11,plate* 后代元素选择器 (plate中的所有元素) 12,plate+apple兄弟元素选择器 13,bento~pickle兄弟元素选择器(bento后面所有的pickle) 14,plate>apple子元素选择器 15,orange:first-child子元素选择器 16,:only-child子元素选择器(只有一个子元素的) 17,.small:last-child子元素选择器 18,plate:nth-child(3)子元素选择器 19,:nth-last-child(4)子元素选择器 20,apple:first-of-type子元素选择器 21,plate:nth-of-type(even)子元素选择器 22,plate:nth-of-type(2n+3)子元素选择器 23,apple:only-of-type子元素选择器 24,.small:nth-child(even)子元素选择器 25,bento:empty子元素选择器(子元素为空) 26,apple:not(.small)not选择器
网友评论