forked from urfu-2018/demo-task-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path15.html
More file actions
61 lines (54 loc) · 1.93 KB
/
15.html
File metadata and controls
61 lines (54 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="ru">
<head>
<title>CSS Селекторс 2000</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="../global.css">
</head>
<body>
<h1 class="global-heading"> </h1>
<p>Выделите ссылки на скачивание zip-файлов</p>
<main class="global-results">
<style>
[href*='.zip.']
{
background-color: #fff !important;
}
[href*='.zip']
{
/*чем мне их выделять?*/
background-color: #cacaca;
}
</style>
<section class="global-result">
<article class="global-scope">
<ul>
<li>
<a href="archive.zip.ncrd" download target="_top">Ссылка 0</a>
</li>
<li>
<a href="ya.ru" target="_blank">Ссылка 1</a>
</li>
<li>
<a href target="_blank">Ссылка 2</a><br>
</li>
<li>
<a href="archive.zip" download target="_top">Ссылка 3</a>
</li>
<li>
<a href="archive2.zip" download target="_top">Ссылка 4</a>
</li>
</ul>
</article>
</section>
<section class="global-result">
<img class="global-goal">
</section>
</main>
<nav class="global-nav">
<a class="global-prev">Предыдущее</a>
<a class="global-next">Следующее</a>
</nav>
<script src="../global.js"></script>
</body>
</html>