博客列表 >我的第一课 HTML基础

我的第一课 HTML基础

张明旭的博客
张明旭的博客原创
2018年08月11日 15:34:01560浏览

<!doctype html> <!--声明-->

<html>

<head>

<meta charset = "utf-8"> <!--设置字符集-->

<title> 2018-8-10 我的第一课 HTML基础 </title>

<link rel = "stylesheet" type = "text/css" href = "static/style.css"><!--链接外部CSS文件-->

<link rel = "icon" type = "image/x-icon" href = "images/tb.jpg"><!--链接图标-->

<style type = "text/css">  /*设置内连样式*/

/*tag,标签名,ID(名字前面加上#) CLASS名 属性选择器 */

body{background-color:pink;}

#box{

width : 200px;

height :200px;

background-color:red;

}

.main{

width:200px;

height:200px;

background-color:blue;

}

a[href = "http://www.baidu.com"]{

color:#000;

}

</style>

</head>

<body>

<a href = "http://www.baidu.com">百度</a>

<a href = "http://www.php.cn">PHP中文网</a>

<a href ="demo2.html">demo2</a>

<div id = "box"></div>

<div class = "main"></div>

<div class = "main"></div>

<div class = "main"></div>

</body>

</html>


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议