Created
December 15, 2014 19:42
-
-
Save anonymous/a96a9135e411f9e81282 to your computer and use it in GitHub Desktop.
Untitled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body{ | |
width:260px; | |
margin:0; | |
padding:0 10px; | |
font-size:11px; | |
font-family:"Arial"; | |
} | |
table { | |
border-collapse: collapse; | |
} | |
th { | |
padding: 10px; | |
width: 33%; | |
background-color: #618ad2; | |
border-top: 1px solid black; | |
border-bottom: 1px solid black; | |
color: white; | |
} | |
td { | |
border-bottom: 1px solid #cccccc; | |
width: 33%; | |
padding:10px; | |
} | |
.painted { | |
background-color: #F5F5F5; | |
} | |
.left { | |
text-align: left; | |
} | |
.center { | |
text-align: center; | |
} | |
.right { | |
text-align: right; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Испытание: итоговая таблица</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<h1>Итоговая таблица</h1> | |
<table> | |
<tr> | |
<th class="left">Город</th> | |
<th class="center">Посещений</th> | |
<th class="right">%</th> | |
</tr> | |
<tr> | |
<td class="left">СПБ</td> | |
<td class="center">199</td> | |
<td class="right">65.12</td> | |
</tr> | |
<tr class="painted"> | |
<td class="left">Москва</td> | |
<td class="center">69</td> | |
<td class="right">21.3</td> | |
</tr> | |
<tr> | |
<td class="left">Киев</td> | |
<td class="center">5</td> | |
<td class="right">8</td> | |
</tr> | |
<tr class="painted"> | |
<td colspan="2">Посещений за весь период</td> | |
<td class="right">273</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// alert('Hello world!'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment