-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (108 loc) · 3.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic -->
<meta charset="utf-8" />
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>DdeadliestT</title>
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet" />
</head>
<body>
<div class="hero_area">
<!-- header section strats -->
<header class="header_section">
<nav class="navbar">
<a class="navbar-brand" href="about.html">
<span>
DdeadliestT
</span>
</a>
<div class="collapse" id="navbarContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Me</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- end header section -->
</div>
<!-- project section -->
<section class="project_section">
<div class="heading_container">
<h2>
My Projects
</h2>
</div>
<div class="box">
<div class="img-box">
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128" fill="currentColor" class="bi bi-folder2" viewBox="0 0 16 16">
<path d="M1 3.5A1.5 1.5 0 0 1 2.5 2h2.764c.958 0 1.76.56 2.311 1.184C7.985 3.648 8.48 4 9 4h4.5A1.5 1.5 0 0 1 15 5.5v7a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 1 12.5zM2.5 3a.5.5 0 0 0-.5.5V6h12v-.5a.5.5 0 0 0-.5-.5H9c-.964 0-1.71-.629-2.174-1.154C6.374 3.334 5.82 3 5.264 3zM14 7H2v5.5a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5z"/>
</svg>
</div>
<div class="detail-box">
<h5>
Project 1
</h5>
<p>
This is an Industry 4.0 technology project.
</p>
<a href="https://github.com/DdeadliestT/repForStudy">
<span>
See on GitHub
</span>
</a>
</div>
</div>
</section>
<!-- end service section -->
<!-- about section -->
<section class="about_section">
<div class="container">
<h2>
About Me
</h2>
</div>
<p>
Hello there! My name is Ilya Fomin and I am a software developer
from Russia, with expertise in the following areas:
<li class="area-items">
C++ programming
</li>
<li class="area-items">
Python programming
</li>
<li class="area-items">
Game development
</li>
<li class="area-items">
Data Science
</li>
</p>
</section>
<!-- end about section -->
<!-- info section -->
<section class="info_section ">
<div class="info_link_box">
<h4>
Links
</h4>
<div class="info_links">
<a class="" href="https://github.com/DdeadliestT">
GitHub
</a>
<a class="" href="https://stackoverflow.com/users/19344356/ddeadliestt">
Stack Overflow
</a>
</div>
</div>
</section>
<!-- end info section -->
</body>
</html>