-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (42 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="logo" type="image/logo" href="img/logo.png">
<title>layout</title>
<link rel="stylesheet" href="css/main.css">
<script src="libs/gsap/gsap.min.js" defer></script>
<script src="libs/gsap/ScrollTrigger.min.js" defer></script>
<script src="libs/gsap/ScrollSmoother.min.js" defer></script>
<script src="js/app.js" defer></script>
</head>
<body>
<div class="wrapper">
<div class="content">
<header class="main-header">
<div class="layers">
<div class="layer__header">
<div class="layers__caption">Welcome To Parallax Site</div>
<div class="layers__title">About Me</div>
</div>
<div class="layer layers__base" style="background-image: url(img/layer-base.png);"></div>
<div class="layer layers__middle" style="background-image: url(img/layer-middle.png);"></div>
<div class="layer layers__front" style="background-image: url(img/layer-front.png);"></div>
</div>
</header>
<article class="main-article" style="background-image: url(img/dungeon.jpg);">
<div class="main-article__content">
<h2 class="main-article__header">About Me</h2>
<p class="main-article__paragraph">Hello everyone, my name is Vladyslav, I am engaged in the development of sites of varying complexity, the development of Shopify stores and their maintenance, I also have a good command of Photoshop and develop applications in C ++ and Python. I am taking Step courses, currently I have a higher education, I live in Kyiv, Ukraine and work as a Freelancer.</p>
<a href="https://github.com/Tomashevskyi-Vladyslav"><img src="img/git.png" alt="git" style="width:30px;"></a>
<a href="https://www.instagram.com/tomashevskyi_vladyslav"><img src="img/inst.png" alt="inst" style="width:30px;"></a>
<a href="https://twitter.com/TomasevskijVlad"><img src="img/twit.png" alt="twit" style="width:30px;"></a>
</div>
<div class="copy">©Web-Design Master</div>
</article>
</div>
</div>
</body>
</html>