-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
54 lines (54 loc) · 1.58 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Презентации с курса "Создание веб-сайтов"</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="shower/themes/ribbon/styles/styles.css">
<link rel="icon" sizes="16x16" href="favicon.png">
<link rel="icon" sizes="32x32" href="favicon.png">
<style>
.shower {
--slide-ratio: calc(16 / 9);
}
h2 {
margin: 30px 0 0;
color: rgb(51,51,51);
text-align: center;
font-size: 70px;
}
p {
margin: 10px 0 0;
text-align: center;
color: rgb(51,51,51);
font-style: italic;
font-size: 20px;
}
p a {
color: rgb(51,51,51);
}
span {
padding-bottom: 3px;
}
</style>
</head>
<body class="shower list">
<header class="caption">
<h1>Презентации с курса "Создание веб-сайтов"</h1>
</header>
<section class="slide">
<h2>Ссылки на презентации</h2>
<ol>
<li><a href="learning.html">Обучение</a></li>
<li><a href="internet.html">Устройство сети Интернет</a></li>
</ol>
<p>Автор: <a href="https://vallek.github.io/index.html">Валера Хаслер</a></p>
<p>Сделано на движке <a href="https://github.com/shower/shower">shower</a></p>
</section>
<footer class="badge">
<a href="https://github.com/Vallek/shower">Fork me on GitHub</a>
</footer>
<div class="progress"></div>
<script src="shower/shower.min.js"></script>
</body>
</html>