-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
56 lines (47 loc) · 1.72 KB
/
table.html
File metadata and controls
56 lines (47 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Invensments Steam</title>
<link rel="stylesheet" href="Style.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css"
/>
<link rel="stylesheet" href="JS.js">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<!-- Анимация логотипа сайта -->
<script>
$(document).ready(function() {
$('.header-left img.animate__animated').hover(
function() {
$(this).addClass('animate__headShake'); // Добавляем класс shakeX
}
)})
</script>
</head>
<!-- ШАПКА -->
<header>
<div class="header-left"><a href="main.html"><img class="animate__animated" src="images/Header-Logo.png" alt=""></a></div>
<div class="header-center">
<ul>
<li><a href="main.html">Главная</a></li>
<li><a href="table.html">Таблица</a></li>
<li><a href="Calculator.html">Калькулятор</a></li>
</ul>
</div>
<div class="header-right"></div>
</header>
<body>
</body>
<!--SOCIAL WEB LINKS-->
<footer>
<div class="footer-text"><p>Все отзывы писать в вк. Отвечу на всё!</p></div>
<div class="images-webs-box">
<div class="images-webs"> <!--Иконки для соц.сетей-->
<a href="https://vk.com/turbina_salimov"><img src="images/Soc.Web/VK.webp" alt="https://vk.com/turbina_salimov"></a>
<a href="https://www.instagram.com/minimal_on/"><img src="images/Soc.Web/inst.webp" alt="https://www.instagram.com/minimal_on/"></a>
</div>
</div>
</footer>
</html>