-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
92 lines (81 loc) · 3.33 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<title>Document</title>
</head>
<body>
<header class="header" id="header">
<div class="typed-strings" id="typed-strings">
<span>ГЕОРГИЙ САЛЬНИКОВ</span>
<span>JAVA-РАЗРАБОТЧИК</span>
</div>
<div class="text-typing header__container container">
<span class="header-title" id="typed"></span>
</div>
</div>
<a href="#portfolio" class="header-arrow">
<img src="./img/chevron-down.svg" alt="Arrow">
</a>
</div>
</header>
<main>
<section class="portfolio" id="portfolio">
<div class="container">
<h2 class="portfolio-header">ОБО МНЕ</h2>
<div class="portfolio-cards-wrapper">
<div class="card">
<a href="hobbys.html" class="card-link">
<img class="card-img" src="./img/ski2.jpg" alt="Хобби и увлечения">
<h3 class="card-title">Хобби и увлечения</h3>
<p>Чем я занимаюсь в свободное время</p>
</a>
</div>
<div class="card">
<a href="prof.html" class="card-link">
<img class="card-img" src="./img/mac.jpg" alt="Профессиональные навыки">
<h3 class="card-title">Профессиональные навыки</h3>
<p>Мои проекты</p>
</a>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="footer-row">
<div class="footer-copyright footer-col">
<div class="footer-copyright-name">Город</div>
<p>Санкт-Петербург, Россия</p>
</div>
<div class="footer-icons footer-col">
<p>Мои профили в социальных сетях:</p>
<div class="footer-icons-row">
<a href="https://vk.com/skgeorge">
<img src="./img/vk.svg" alt="">
</a>
<a href="https://github.com/goshik033">
<img src="./img/github.svg" alt="">
</a>
</div>
</div>
<div class="footer-contacts footer-col">
Номер телефона:
<a class="phone" href="tel:+79990354815"> +7(999)035-48-15</a>
</div>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vide/0.5.1/jquery.vide.min.js" ></script>
<script src="./js/main.js"></script>
</body>
</html>