Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
kokolina1888 committed Nov 23, 2016
1 parent 3c0954e commit cf67195
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 0 deletions.
25 changes: 25 additions & 0 deletions CSS_presentation/index.html
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<a class="demo" href="" ></a>
<img src="" width="">
<a class="demo" href="" ></a>
<img class="demo" src="" width="">
<a href="" ></a>
<img src="" width="">
<p></p>
<p></p>
<p id="strange"></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>

</body>
</html>
15 changes: 15 additions & 0 deletions CSS_presentation/style.css
@@ -0,0 +1,15 @@
a, #strange {
background-color: red;
}
.demo, #strange {

}
table {
border: 1px solid #000;
border-collapse: collapse;
/*border-top: 1px solid #ccc;*/

}
td {
border: 1px solid #000;
}
31 changes: 31 additions & 0 deletions CSS_presentation/table.html
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<table>
<tr>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
</table>

</body>
</html>

0 comments on commit cf67195

Please sign in to comment.