-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (117 loc) · 4.99 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./images/x-icon/__x-icon.svg" type="image/x-icon"/>
<link rel="stylesheet" href="./pages/index.css" />
<title>My web-page</title>
</head>
<body class="background">
<div class="page">
<header class="header">
<h1 class="header__title">My personal web-page</h1>
<div class="nav-bar">
<a class="nav-bar__link" href="#dev-tools">Dev Tools</a>
<a class="nav-bar__link" href="#about-me">About Me</a>
<a class="nav-bar__link" href="#portfolio">Portfolio</a>
</div>
</header>
<main class="content">
<section class="dev-tools" id="dev-tools">
<div class="container">
<div class="section__header">
<h2 class="section__title">Dev Tools</h2>
<div class="section__line"></div>
</div>
<div class="dev-tools__box">
<h3 class="dev-tools__title">Skills</h3>
<p class="dev-tools__caption">
Technologies that I am familiar with and work
</p>
<ul class="dev-tools__items">
<template id="tool-template">
<li class="dev-tools__item">
<a class="dev-tools__link" href="" title="" target="_blank"></a>
</li>
</template>
</ul>
</div>
</div>
</section>
<section class="about-me" id="about-me">
<div class="container">
<div class="section__header">
<h2 class="section__title">About me</h2>
<div class="section__line"></div>
</div>
<div class="about-me__box">
<div class="about-me__text-block">
<h3 class="about-me__name">Igor Malikov</h3>
<p class="about-me__caption">
Frontend developer, 20 years old
</p>
<p class="about-me__info">
I was born in Voronezh, later moved to Moscow, graduated from
the school and College of Computer Science and Programming at
the Financial University there, currently I live in Yerevan
and am a student at the Russian-Armenian University on the
course of PMI. I love listening to music, hiking, board games
and video games. I started coding in the last years of my
studies at school. I took orders from friends and did
internships in little-known and private companies. Currently,
I am developing web development and programming skills,
simultaneously fulfilling orders as a freelancer and in
parallel with a classmate we are launching our own company for
the production of web products.
</p>
</div>
<div class="about-me__frame">
<img class="about-me__img" src="./images/about-me/__my-photo.png" alt="me"/>
</div>
</div>
</div>
</section>
<section class="portfolio" id="portfolio">
<div class="container">
<div class="section__header">
<h2 class="section__title">Portfolio</h2>
<div class="section__line"></div>
</div>
<div class="portfolio__items">
<template id="project-template">
<div class="portfolio__item">
<p class="portfolio__item-name"></p>
<div class="portfolio__item-links">
<a class="portfolio__item-link link_github" href="" title="link to the project github" target="_blank">github</a>
<a class="portfolio__item-link link_preview" href="" title="link to the project preview" target="_blank">preview</a>
</div>
</div>
</template>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="section__header">
<h2 class="section__title">Contacts</h2>
<div class="section__line"></div>
</div>
<div class="footer__box">
<p class="footer__caption">Developed by @Mea6ea6</p>
<div class="footer__links">
<a class="footer__link" href="https://t.me/mea6ea6">telegram</a>
<a class="footer__link" href="https://github.com/Mea6ea6">github</a>
<a class="footer__link" href="https://mea6ea6.github.io/price-list/">price-list</a>
</div>
</div>
</div>
</footer>
</div>
</body>
<script src="./utils/constants.js"></script>
<script src="./components/Tool.js"></script>
<script src="./components/Project.js"></script>
<script src="pages/index.js"></script>
</html>