2018年8月10(星期五)20:00-22:00
PHP中文网作业
主讲:灭绝师太
作业1:
实例
<!-- html -> 超文本标记语言,是网页标记语言,HyperText Markup language; !DOCTYPE html -> 标签置顶网页首,用于声明html5网页标准; 标记(标签)成对使用; 敲代码特别注意输入法的中英文格式,否则后患无穷; --> <!DOCTYPE html> <!-- 声明html5网页标准 --> <html> <head> <!-- 页面头部标签 --> <meta charset="UTF-8"> <!-- 声明网页使用中文编码 --> <title>php中文网视频教程</title> <!-- 网页标题标签 --> <!-- 定义文档与外部文件的联系,外部样式 ,可通用--> <link rel="stylesheet" type="text/css" href="/static/style.css"> <!-- 给网页标题增加图标, --> <link rel="shortcut icon" type="image/x-icon" href="img/IMAGE_ONE.png"> <style type="text/css"> /*内部样式,只用于本页面,*/ /* tag:标签名(用于定义标签属性);id:用于定义独有的属性;class:类,定义某一类标签的属性; */ body{}; /*标签选择器*/ #box{ width: 100px;height: 100px;background: pink; } .main{width: 100px;height: 100px;background: green;} a{color: red;} div{background: pink;} a[href="http://www.php.cn/"]{color:blue;} a[href="demo2.html"]{color:pink; } /*派生选择器 根据文档上下文关系来定义样式*/ div a{color: #000;} #box a{} </style> </head> <body><!-- 内联样式 style="background: blue;"--> <img src="" alt=""> <a href="https://www.baidu.com">百度</a> <a href="http://www.php.cn">php中文网</a> <a href="demo2.html">demo</a> <div id="box"> <a href="">php</a> </div> <div class="main"></div> <div></div> <div></div> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例
作业2: