Skip to content

Commit

Permalink
Merge pull request #67 from wenjianyangwen/master
Browse files Browse the repository at this point in the history
#47 第2次实验~练习CSS
  • Loading branch information
zengsn authored Oct 11, 2017
2 parents 7f9d341 + 291ddcf commit 1794620
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
39 changes: 39 additions & 0 deletions 1517060328/21517060328.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<style type="text/css">
h1{
color:blue;
}
div{
margin:5px;
background-color:grey;
width:200px;
height:200px;
}
</style>
<title>CSS样式的练习</title>
</head>

<body>
<h1>第一个标签标签</h1>
<p>这些段落的颜色为蓝色</p>
第二次实训
<p>这些段落的颜色为红蓝色</p>
<div id="hezi">
<table width="100px" align="center" role="1">
<tr>
<td align="center">登录</td>
</tr>
<tr>
<td>账户:<input name="name" type="text" value="123456"></td>
</tr>
<tr>
<td>密码:<input name="password" type="wenjianyang" value="123456"></td>
</tr>
</table>
</div>
</body>
</html>
7 changes: 7 additions & 0 deletions 1517060328/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
p{
color:blue;

}
td{
border:ridge
}

0 comments on commit 1794620

Please sign in to comment.