随笔分类 -  HTML

页面基本元素
摘要:1 dir 2 3 <html dir = "浏览器中文本的方向" >包含的内容部分</html> 4 其中ltr和rtl是他的两个属性分别是从左到右显示和从右到坐显示的意思 5 6 7 lang 8 <html lang = "指定的语言" >包含的内容部分</html> 9 如英语=en;汉语=zh;日语=ja;10 11 head12 <head>包含的其他元素</head>13 一般需要包括标题,基底元素,元信息等。head不是必要的,但为了显示title确是应该用的14 使 阅读全文
posted @ 2012-08-20 15:26 elleniou 阅读(396) 评论(0) 推荐(0)
HTML基础语法
摘要:1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <!--名字空间属性用xmls表示,来定义识别页面标签的网址--> 4 5 <head><!--关于页面头部所使用的元素 --> 6 7 阅读全文
posted @ 2012-08-20 14:56 elleniou 阅读(221) 评论(0) 推荐(0)
html标签大全
摘要:<!> 跑马灯 <marquee>...</marquee>普通卷动 <marquee behavior=slide>...</marquee>滑动 <marquee behavior=scroll>...</marquee>预设卷动 <marquee behavior=alternate>...</marquee>来回卷动 <marquee direction=down>...</marquee>向下卷动 <marquee direction=up> 阅读全文
posted @ 2012-07-20 22:23 elleniou 阅读(509) 评论(0) 推荐(0)